Enum ADUsrRole.VAttr
- java.lang.Object
-
- java.lang.Enum<ADUsrRole.VAttr>
-
- de.mid.innovator.srv2api.icw2meta.ADUsrRole.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<ADUsrRole.VAttr>
- Enclosing interface:
- ADUsrRole
public static enum ADUsrRole.VAttr extends java.lang.Enum<ADUsrRole.VAttr> implements K_VATTR
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
toInt()
Returns a specific integer value for the enumeration constant.static ADUsrRole.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ADUsrRole.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AccessAble
public static final ADUsrRole.VAttr AccessAble
-
ExecuteAble
public static final ADUsrRole.VAttr ExecuteAble
-
HasAnnotationMode
public static final ADUsrRole.VAttr HasAnnotationMode
-
HasBulkMode
public static final ADUsrRole.VAttr HasBulkMode
-
HasChangeSetMode
public static final ADUsrRole.VAttr HasChangeSetMode
-
HasComparingModelsMode
public static final ADUsrRole.VAttr HasComparingModelsMode
-
HasConfigMode
public static final ADUsrRole.VAttr HasConfigMode
-
HasDBConnectMode
public static final ADUsrRole.VAttr HasDBConnectMode
-
HasDeletingChangeSetMode
public static final ADUsrRole.VAttr HasDeletingChangeSetMode
-
HasDependencyEditorMode
public static final ADUsrRole.VAttr HasDependencyEditorMode
-
HasEditApplConfMode
public static final ADUsrRole.VAttr HasEditApplConfMode
-
HasExportingModelsMode
public static final ADUsrRole.VAttr HasExportingModelsMode
-
HasLabelMode
public static final ADUsrRole.VAttr HasLabelMode
-
HasNoDBDeletionMode
public static final ADUsrRole.VAttr HasNoDBDeletionMode
-
HasSectionMode
public static final ADUsrRole.VAttr HasSectionMode
-
HasTranslationMode
public static final ADUsrRole.VAttr HasTranslationMode
-
HasVersionMode
public static final ADUsrRole.VAttr HasVersionMode
-
Login
public static final ADUsrRole.VAttr Login
-
MdlUser
public static final ADUsrRole.VAttr MdlUser
-
MdlUserByPattern
public static final ADUsrRole.VAttr MdlUserByPattern
-
Model
public static final ADUsrRole.VAttr Model
-
OperationModeAsString
public static final ADUsrRole.VAttr OperationModeAsString
-
OperationModeMask
public static final ADUsrRole.VAttr OperationModeMask
-
ReadAble
public static final ADUsrRole.VAttr ReadAble
-
RoleExecution
public static final ADUsrRole.VAttr RoleExecution
-
-
Method Detail
-
values
public static ADUsrRole.VAttr[] 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 (ADUsrRole.VAttr c : ADUsrRole.VAttr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ADUsrRole.VAttr 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
-
-