public enum AssignType extends Enum<AssignType>
| Enum Constant and Description |
|---|
AUTO |
BYTE_ARRAY |
COPY |
CSV |
JSON |
STRING |
TEXT |
XML |
XML_STRING |
YAML |
| Modifier and Type | Method and Description |
|---|---|
static AssignType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignType AUTO
public static final AssignType COPY
public static final AssignType TEXT
public static final AssignType CSV
public static final AssignType YAML
public static final AssignType JSON
public static final AssignType STRING
public static final AssignType XML
public static final AssignType XML_STRING
public static final AssignType BYTE_ARRAY
public static AssignType[] values()
for (AssignType c : AssignType.values()) System.out.println(c);
public static AssignType 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 © 2019. All rights reserved.