public enum ConsumerName extends Enum<ConsumerName>
IResultsConsumer.| Modifier and Type | Field and Description |
|---|---|
Class<? extends IResultsConsumer> |
clazz
Consumer class.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsumerName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsumerName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsumerName XML
public static final ConsumerName H2
public static final ConsumerName CONSOLE
public static final ConsumerName MYSQL
public final Class<? extends IResultsConsumer> clazz
public static ConsumerName[] values()
for (ConsumerName c : ConsumerName.values()) System.out.println(c);
public static ConsumerName 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 nullCopyright © 2016 SciJava. All rights reserved.