public enum DataUnitTypeValues extends java.lang.Enum<DataUnitTypeValues>
List of DataStructure types.
Enum Constant and Description |
---|
_G
Pactables table
|
_M
Pactables table with historical account, with century
|
_N
Pactables table without historical account, with century
|
_T
Pactables table without historical account
|
_V
Logical View
|
_Z
Data Structure
|
Modifier and Type | Method and Description |
---|---|
static DataUnitTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataUnitTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataUnitTypeValues _G
Pactables table
public static final DataUnitTypeValues _M
Pactables table with historical account, with century
public static final DataUnitTypeValues _N
Pactables table without historical account, with century
public static final DataUnitTypeValues _T
Pactables table without historical account
public static final DataUnitTypeValues _V
Logical View
public static final DataUnitTypeValues _Z
Data Structure
public static DataUnitTypeValues 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 static DataUnitTypeValues[] values()
for (DataUnitTypeValues c : DataUnitTypeValues.values()) System.out.println(c);