Enum ServiceProviderPasswordRulesApplyTo
- java.lang.Object
-
- java.lang.Enum<ServiceProviderPasswordRulesApplyTo>
-
- co.ecg.alpaca.toolkit.generated.enums.ServiceProviderPasswordRulesApplyTo
-
- All Implemented Interfaces:
Serializable
,Comparable<ServiceProviderPasswordRulesApplyTo>
public enum ServiceProviderPasswordRulesApplyTo extends Enum<ServiceProviderPasswordRulesApplyTo>
User types for which the Service Provider Password Rules apply. The rules could apply to the Administrators (Group and Department) or Administrators (Group and Department) and Users.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINISTRATOR
ADMINISTRATORANDUSER
GROUPADMINISTRATORANDUSEREXTERNALAUTHENTICATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceProviderPasswordRulesApplyTo
get(String value)
static ServiceProviderPasswordRulesApplyTo[]
getArray(String[] values)
String
toString()
String
value()
static ServiceProviderPasswordRulesApplyTo
valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceProviderPasswordRulesApplyTo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMINISTRATOR
public static final ServiceProviderPasswordRulesApplyTo ADMINISTRATOR
-
ADMINISTRATORANDUSER
public static final ServiceProviderPasswordRulesApplyTo ADMINISTRATORANDUSER
-
GROUPADMINISTRATORANDUSEREXTERNALAUTHENTICATION
public static final ServiceProviderPasswordRulesApplyTo GROUPADMINISTRATORANDUSEREXTERNALAUTHENTICATION
-
-
Method Detail
-
values
public static ServiceProviderPasswordRulesApplyTo[] 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 (ServiceProviderPasswordRulesApplyTo c : ServiceProviderPasswordRulesApplyTo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceProviderPasswordRulesApplyTo 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:
toString
in classEnum<ServiceProviderPasswordRulesApplyTo>
-
get
public static ServiceProviderPasswordRulesApplyTo get(String value)
-
getArray
public static ServiceProviderPasswordRulesApplyTo[] getArray(String[] values)
-
-