Enum GroupUserAuthenticationAccess
- java.lang.Object
-
- java.lang.Enum<GroupUserAuthenticationAccess>
-
- co.ecg.alpaca.toolkit.generated.enums.GroupUserAuthenticationAccess
-
- All Implemented Interfaces:
Serializable,Comparable<GroupUserAuthenticationAccess>
public enum GroupUserAuthenticationAccess extends Enum<GroupUserAuthenticationAccess>
Group's policy for a user's access to their Authentication service configuration.- Author:
- AlpacaGenerator
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GroupUserAuthenticationAccessget(String value)static GroupUserAuthenticationAccess[]getArray(String[] values)StringtoString()Stringvalue()static GroupUserAuthenticationAccessvalueOf(String name)Returns the enum constant of this type with the specified name.static GroupUserAuthenticationAccess[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL
public static final GroupUserAuthenticationAccess FULL
-
NONE
public static final GroupUserAuthenticationAccess NONE
-
-
Method Detail
-
values
public static GroupUserAuthenticationAccess[] 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 (GroupUserAuthenticationAccess c : GroupUserAuthenticationAccess.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupUserAuthenticationAccess valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
toString
public String toString()
- Overrides:
toStringin classEnum<GroupUserAuthenticationAccess>
-
get
public static GroupUserAuthenticationAccess get(String value)
-
getArray
public static GroupUserAuthenticationAccess[] getArray(String[] values)
-
-