public enum ConsumerType extends Enum<ConsumerType>
| Enum Constant and Description |
|---|
NORMAL |
REALTIME |
SAVEDSEARCH |
| Modifier and Type | Method and Description |
|---|---|
static ConsumerType |
fromUri(String uri) |
static ConsumerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsumerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsumerType NORMAL
public static final ConsumerType REALTIME
public static final ConsumerType SAVEDSEARCH
public static ConsumerType[] values()
for (ConsumerType c : ConsumerType.values()) System.out.println(c);
public static ConsumerType 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 static ConsumerType fromUri(String uri)
Apache Camel