Enum ADLogin.VAttr
- java.lang.Object
-
- java.lang.Enum<ADLogin.VAttr>
-
- de.mid.innovator.srv2api.icw2meta.ADLogin.VAttr
-
- All Implemented Interfaces:
K_VATTR,java.io.Serializable,java.lang.Comparable<ADLogin.VAttr>
- Enclosing interface:
- ADLogin
public static enum ADLogin.VAttr extends java.lang.Enum<ADLogin.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AccessTimeDisplayHostIgnoreConfigurationIsSuperUserLocaleLoginAbleMdlAdminMdlUserOwnedLockRepAdminUseAllRolesUsrRole
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description inttoInt()Returns a specific integer value for the enumeration constant.static ADLogin.VAttrvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ADLogin.VAttr[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AccessTime
public static final ADLogin.VAttr AccessTime
-
Display
public static final ADLogin.VAttr Display
-
Host
public static final ADLogin.VAttr Host
-
IgnoreConfiguration
public static final ADLogin.VAttr IgnoreConfiguration
-
IsSuperUser
public static final ADLogin.VAttr IsSuperUser
-
Locale
public static final ADLogin.VAttr Locale
-
LoginAble
public static final ADLogin.VAttr LoginAble
-
MdlAdmin
public static final ADLogin.VAttr MdlAdmin
-
MdlUser
public static final ADLogin.VAttr MdlUser
-
OwnedLock
public static final ADLogin.VAttr OwnedLock
-
RepAdmin
public static final ADLogin.VAttr RepAdmin
-
UseAllRoles
public static final ADLogin.VAttr UseAllRoles
-
UsrRole
public static final ADLogin.VAttr UsrRole
-
-
Method Detail
-
values
public static ADLogin.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 (ADLogin.VAttr c : ADLogin.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 ADLogin.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
-
-