public enum ProducerClients extends Enum<ProducerClients>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
Producer |
get(String producerName) |
void |
register(String producerName,
Producer producer) |
static ProducerClients |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProducerClients[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProducerClients INSTANCE
public static ProducerClients[] values()
for (ProducerClients c : ProducerClients.values()) System.out.println(c);
public static ProducerClients valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic Producer get(String producerName)
producerName - Name of the producer.Producer object or nullCopyright © 2019. All rights reserved.