Enum MapOTPPolicyEntityFields
- java.lang.Object
- 
- java.lang.Enum<MapOTPPolicyEntityFields>
- 
- org.keycloak.models.map.realm.entity.MapOTPPolicyEntityFields
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<MapOTPPolicyEntityFields>,- EntityField<MapOTPPolicyEntity>
 
 @Generated("org.keycloak.models.map.processor.GenerateEntityImplementationsProcessor") public enum MapOTPPolicyEntityFields extends Enum<MapOTPPolicyEntityFields> implements EntityField<MapOTPPolicyEntity> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description OTP_POLICY_ALGORITHMOTP_POLICY_CODE_REUSABLEOTP_POLICY_DIGITSOTP_POLICY_INITIAL_COUNTEROTP_POLICY_LOOK_AHEAD_WINDOWOTP_POLICY_PERIODOTP_POLICY_TYPE
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static MapOTPPolicyEntityFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static MapOTPPolicyEntityFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.- 
Methods inherited from class java.lang.Enumclone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 - 
Methods inherited from interface org.keycloak.models.map.common.EntityFieldcollectionAdd, collectionRemove, get, getCollectionElementClass, getFieldClass, getMapKeyClass, getMapValueClass, getName, getNameCamelCase, getNameDashed, mapGet, mapPut, mapRemove, set
 
- 
 
- 
- 
- 
Enum Constant Detail- 
OTP_POLICY_ALGORITHMpublic static final MapOTPPolicyEntityFields OTP_POLICY_ALGORITHM 
 - 
OTP_POLICY_CODE_REUSABLEpublic static final MapOTPPolicyEntityFields OTP_POLICY_CODE_REUSABLE 
 - 
OTP_POLICY_DIGITSpublic static final MapOTPPolicyEntityFields OTP_POLICY_DIGITS 
 - 
OTP_POLICY_INITIAL_COUNTERpublic static final MapOTPPolicyEntityFields OTP_POLICY_INITIAL_COUNTER 
 - 
OTP_POLICY_LOOK_AHEAD_WINDOWpublic static final MapOTPPolicyEntityFields OTP_POLICY_LOOK_AHEAD_WINDOW 
 - 
OTP_POLICY_PERIODpublic static final MapOTPPolicyEntityFields OTP_POLICY_PERIOD 
 - 
OTP_POLICY_TYPEpublic static final MapOTPPolicyEntityFields OTP_POLICY_TYPE 
 
- 
 - 
Method Detail- 
valuespublic static MapOTPPolicyEntityFields[] 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 (MapOTPPolicyEntityFields c : MapOTPPolicyEntityFields.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MapOTPPolicyEntityFields 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-