public enum ExportType extends Enum<ExportType>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFull()
Returns
true if the ExportType instance is FULL. |
boolean |
isLight()
Returns
true if the ExportType instance is LIGHT. |
boolean |
isMatrix()
Returns
true if the ExportType instance is MATRIX. |
static ExportType |
parse(String value)
Returns the
ExportType instance corresponding to the specified value. |
String |
toString()
Returns the
String value of the ExportType. |
static ExportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportType LIGHT
public static final ExportType FULL
public static final ExportType MATRIX
public static ExportType[] values()
for (ExportType c : ExportType.values()) System.out.println(c);
public static ExportType 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 nullpublic static ExportType parse(String value)
ExportType instance corresponding to the specified value.public boolean isFull()
true if the ExportType instance is FULL.public boolean isLight()
true if the ExportType instance is LIGHT.public boolean isMatrix()
true if the ExportType instance is MATRIX.public String toString()
String value of the ExportType.toString in class Enum<ExportType>