public static enum DataType.Type extends Enum<DataType.Type>
Modifier and Type | Method and Description |
---|---|
static DataType.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType.Type none
public static final DataType.Type any
public static final DataType.Type java
public static final DataType.Type text
public static final DataType.Type xml
public static final DataType.Type json
public static DataType.Type[] values()
for (DataType.Type c : DataType.Type.values()) System.out.println(c);
public static DataType.Type 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