Package org.keycloak.models.map.user
Enum MapUserEntityFields
- java.lang.Object
- 
- java.lang.Enum<MapUserEntityFields>
- 
- org.keycloak.models.map.user.MapUserEntityFields
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<MapUserEntityFields>,- EntityField<MapUserEntity>
 
 @Generated("org.keycloak.models.map.processor.GenerateEntityImplementationsProcessor") public enum MapUserEntityFields extends Enum<MapUserEntityFields> implements EntityField<MapUserEntity> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static MapUserEntityFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static MapUserEntityFields[]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- 
IDpublic static final MapUserEntityFields ID 
 - 
ATTRIBUTESpublic static final MapUserEntityFields ATTRIBUTES 
 - 
CREATED_TIMESTAMPpublic static final MapUserEntityFields CREATED_TIMESTAMP 
 - 
CREDENTIALSpublic static final MapUserEntityFields CREDENTIALS 
 - 
EMAILpublic static final MapUserEntityFields EMAIL 
 - 
EMAIL_CONSTRAINTpublic static final MapUserEntityFields EMAIL_CONSTRAINT 
 - 
EMAIL_VERIFIEDpublic static final MapUserEntityFields EMAIL_VERIFIED 
 - 
ENABLEDpublic static final MapUserEntityFields ENABLED 
 - 
FEDERATED_IDENTITIESpublic static final MapUserEntityFields FEDERATED_IDENTITIES 
 - 
FEDERATION_LINKpublic static final MapUserEntityFields FEDERATION_LINK 
 - 
FIRST_NAMEpublic static final MapUserEntityFields FIRST_NAME 
 - 
GROUPS_MEMBERSHIPpublic static final MapUserEntityFields GROUPS_MEMBERSHIP 
 - 
LAST_NAMEpublic static final MapUserEntityFields LAST_NAME 
 - 
NOT_BEFOREpublic static final MapUserEntityFields NOT_BEFORE 
 - 
REALM_IDpublic static final MapUserEntityFields REALM_ID 
 - 
REQUIRED_ACTIONSpublic static final MapUserEntityFields REQUIRED_ACTIONS 
 - 
ROLES_MEMBERSHIPpublic static final MapUserEntityFields ROLES_MEMBERSHIP 
 - 
SERVICE_ACCOUNT_CLIENT_LINKpublic static final MapUserEntityFields SERVICE_ACCOUNT_CLIENT_LINK 
 - 
USER_CONSENTSpublic static final MapUserEntityFields USER_CONSENTS 
 - 
USERNAMEpublic static final MapUserEntityFields USERNAME 
 
- 
 - 
Method Detail- 
valuespublic static MapUserEntityFields[] 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 (MapUserEntityFields c : MapUserEntityFields.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MapUserEntityFields 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
 
 
- 
 
-