Package com.pingidentity.sdk.password
Enum ResettablePasswordCredential.AccountEnabledStatus
- java.lang.Object
-
- java.lang.Enum<ResettablePasswordCredential.AccountEnabledStatus>
-
- com.pingidentity.sdk.password.ResettablePasswordCredential.AccountEnabledStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ResettablePasswordCredential.AccountEnabledStatus>
- Enclosing interface:
- ResettablePasswordCredential
public static enum ResettablePasswordCredential.AccountEnabledStatus extends Enum<ResettablePasswordCredential.AccountEnabledStatus>
Indicates the account enabled status.- Since:
- 12.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResettablePasswordCredential.AccountEnabledStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ResettablePasswordCredential.AccountEnabledStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final ResettablePasswordCredential.AccountEnabledStatus UNDEFINED
Indicates that the account status is undefined, or cannot be determined.- Since:
- 12.0
-
ENABLED
public static final ResettablePasswordCredential.AccountEnabledStatus ENABLED
Indicates that the account is enabled.- Since:
- 12.0
-
DISABLED
public static final ResettablePasswordCredential.AccountEnabledStatus DISABLED
Indicates that the account is disabled.- Since:
- 12.0
-
-
Method Detail
-
values
public static ResettablePasswordCredential.AccountEnabledStatus[] 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 (ResettablePasswordCredential.AccountEnabledStatus c : ResettablePasswordCredential.AccountEnabledStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResettablePasswordCredential.AccountEnabledStatus 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
-
-