Package com.nomagic.magicdraw.uaf
Enum UAF.DriverKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.DriverKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.DriverKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.DriverKindEnum>
- Enclosing class:
- UAF
public static enum UAF.DriverKindEnum extends java.lang.Enum<UAF.DriverKindEnum>
Enumeration of the possible kinds of Driver.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCHITECTURE_PRINCIPLE
Indicates that the Driver associated with this DriverKind is the kind of underlying general rule or guideline for the use and deployment of assets across the enterprise.OPERATIONAL
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the operational perspective.OTHER
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from some nonspecific perspective.PERSONNEL
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the personnel perspective.PROJECT
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the projects perspective.RESOURCE
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the resources perspective.SECURITY
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the security perspective.SERVICE
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the services perspective.STANDARD
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the standards perspective.STRATEGIC
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the strategic perspective.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.DriverKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.DriverKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.DriverKindEnum anEnum)
static UAF.DriverKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.DriverKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRATEGIC
public static final UAF.DriverKindEnum STRATEGIC
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the strategic perspective.
-
OPERATIONAL
public static final UAF.DriverKindEnum OPERATIONAL
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the operational perspective.
-
SERVICE
public static final UAF.DriverKindEnum SERVICE
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the services perspective.
-
RESOURCE
public static final UAF.DriverKindEnum RESOURCE
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the resources perspective.
-
PERSONNEL
public static final UAF.DriverKindEnum PERSONNEL
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the personnel perspective.
-
SECURITY
public static final UAF.DriverKindEnum SECURITY
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the security perspective.
-
PROJECT
public static final UAF.DriverKindEnum PROJECT
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the projects perspective.
-
STANDARD
public static final UAF.DriverKindEnum STANDARD
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from the standards perspective.
-
OTHER
public static final UAF.DriverKindEnum OTHER
Indicates that the Driver associated with this DriverKind is the kind of thing that forces the enterprise to work or act in a certain way from some nonspecific perspective.
-
ARCHITECTURE_PRINCIPLE
public static final UAF.DriverKindEnum ARCHITECTURE_PRINCIPLE
Indicates that the Driver associated with this DriverKind is the kind of underlying general rule or guideline for the use and deployment of assets across the enterprise.
-
-
Method Detail
-
values
public static UAF.DriverKindEnum[] 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 (UAF.DriverKindEnum c : UAF.DriverKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UAF.DriverKindEnum 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 UAF.DriverKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.DriverKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.DriverKindEnum anEnum)
-
-