public static enum Import.ImportType extends java.lang.Enum<Import.ImportType>
Enum Constant and Description |
---|
HIERARCHY_DATA
An import into a list.
|
LINE_ITEM_DEFINITION
An import into a module blueprint view.
|
MODULE_DATA
An import into a module (data) view.
|
USERS
An import into the Users view.
|
VERSIONS
An import into the Versions view.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Import.ImportType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Import.ImportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Import.ImportType HIERARCHY_DATA
public static final Import.ImportType MODULE_DATA
public static final Import.ImportType LINE_ITEM_DEFINITION
public static final Import.ImportType USERS
public static final Import.ImportType VERSIONS
public static Import.ImportType[] values()
for (Import.ImportType c : Import.ImportType.values()) System.out.println(c);
public static Import.ImportType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Import.ImportType>