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