public enum LoadType extends Enum<LoadType>
| Enum Constant and Description |
|---|
ALTERNATE_DATA
The alternate data.
|
CUSTOM_DATA
The custom data.
|
NULL_DATA
The null data.
|
STANDARD_DATA
The standard data.
|
| Modifier and Type | Method and Description |
|---|---|
static LoadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadType STANDARD_DATA
public static final LoadType ALTERNATE_DATA
public static final LoadType NULL_DATA
public static final LoadType CUSTOM_DATA
public static LoadType[] values()
for (LoadType c : LoadType.values()) System.out.println(c);
public static LoadType 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 © 2012–2020 hazendaz. All rights reserved.