public enum DataModelType extends java.lang.Enum<DataModelType>
FilePlanRepository.getDataModelType
Enum Constant and Description |
---|
Base
Represents the "Base" data model.
|
DoDBase
Represents the non-Classified DoD data model.
|
DoDClassified
Represents the Classified DoD data model.
|
PRO2002
Represents the PRO data model.
|
Modifier and Type | Method and Description |
---|---|
static DataModelType |
getInstanceFromInt(int intValue)
Returns the DataModelType member for the given integer value.
|
static DataModelType |
getInstanceFromString(java.lang.String label)
Returns the DataModelType member for the given label value.
|
int |
getIntValue()
Returns the integer value associated with this member.
|
java.lang.String |
getLabel()
Provides the string label constant for the
DataModelType member. |
static DataModelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataModelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelType Base
public static final DataModelType DoDBase
public static final DataModelType DoDClassified
public static final DataModelType PRO2002
public static DataModelType[] values()
for (DataModelType c : DataModelType.values()) System.out.println(c);
public static DataModelType 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 int getIntValue()
int
value.public java.lang.String getLabel()
DataModelType
member.String
value.public static DataModelType getInstanceFromInt(int intValue)
intValue
- the int
value to look up.DataModelType
member or null
if the value is not found.public static DataModelType getInstanceFromString(java.lang.String label)
label
- the label String
to look up.DataModelType
member or null
if the string is not found.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.