public enum ApplicationDataType extends Enum<ApplicationDataType>
| Enum Constant and Description |
|---|
LIST
A List interface implementation.
|
MAP
A Map interface implementation.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationDataType MAP
public static final ApplicationDataType LIST
public static ApplicationDataType[] values()
for (ApplicationDataType c : ApplicationDataType.values()) System.out.println(c);
public static ApplicationDataType 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 nullCopyright © 2020. All Rights Reserved.