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:
 ProfileImplementation.TextProvider,java.io.Serializable,java.lang.Comparable<UAF.DriverKindEnum>
- Enclosing class:
 - UAF
 
public static enum UAF.DriverKindEnum extends java.lang.Enum<UAF.DriverKindEnum> implements ProfileImplementation.TextProvider
Enumeration of the possible kinds of Driver. 
- 
- 
Enum Constant Summary
Enum Constants Enum Constant Description ARCHITECTURE_PRINCIPLEIndicates 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.OPERATIONALIndicates 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.OTHERIndicates 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.PERSONNELIndicates 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.PROJECTIndicates 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.RESOURCEIndicates 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.SECURITYIndicates 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.SERVICEIndicates 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.STANDARDIndicates 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.STRATEGICIndicates 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. 
- 
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringtext 
- 
Constructor Summary
Constructors Modifier Constructor Description privateDriverKindEnum(java.lang.String text) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.DriverKindEnumfrom(java.lang.Object o)java.lang.StringgetText()static UAF.DriverKindEnumtoEnum(EnumerationLiteral literal)static EnumerationLiteraltoEnumerationLiteral(UAF profile, UAF.DriverKindEnum anEnum)static UAF.DriverKindEnumvalueOf(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()
- Specified by:
 getTextin interfaceProfileImplementation.TextProvider
 
- 
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)
 
 - 
 
 -