public enum MinorType extends Enum<MinorType>
| Enum Constant and Description |
|---|
CHANGE |
FILE |
INFORMATION |
LOCATION |
SELF_SEEN |
START |
STOP |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static MinorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MinorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinorType TEXT
public static final MinorType FILE
public static final MinorType LOCATION
public static final MinorType INFORMATION
public static final MinorType START
public static final MinorType STOP
public static final MinorType SELF_SEEN
public static final MinorType CHANGE
public static MinorType[] values()
for (MinorType c : MinorType.values()) System.out.println(c);
public static MinorType 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 Camel