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