Package com.nomagic.updm.utils
Enum UPDMProfile.ArchitectureFrameworkKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.ArchitectureFrameworkKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.ArchitectureFrameworkKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.ArchitectureFrameworkKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.ArchitectureFrameworkKindEnum extends java.lang.Enum<UPDMProfile.ArchitectureFrameworkKindEnum>
Architecture Framework Kind
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.ArchitectureFrameworkKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.ArchitectureFrameworkKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.ArchitectureFrameworkKindEnum anEnum)
static UPDMProfile.ArchitectureFrameworkKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.ArchitectureFrameworkKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DODAF
public static final UPDMProfile.ArchitectureFrameworkKindEnum DODAF
Department of Defense Architecture Framework.
-
MODAF
public static final UPDMProfile.ArchitectureFrameworkKindEnum MODAF
Ministry of Defence Architecture Framework.
-
DODAF_2_0
public static final UPDMProfile.ArchitectureFrameworkKindEnum DODAF_2_0
Department of Defense Architecture Framework v2.
-
NAF
public static final UPDMProfile.ArchitectureFrameworkKindEnum NAF
NATO Architecture Framework.
-
NAF_4_0
public static final UPDMProfile.ArchitectureFrameworkKindEnum NAF_4_0
NATO Architecture Framework v4.0.
-
-
Method Detail
-
values
public static UPDMProfile.ArchitectureFrameworkKindEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UPDMProfile.ArchitectureFrameworkKindEnum c : UPDMProfile.ArchitectureFrameworkKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UPDMProfile.ArchitectureFrameworkKindEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static UPDMProfile.ArchitectureFrameworkKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.ArchitectureFrameworkKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.ArchitectureFrameworkKindEnum anEnum)
-
-