Package org.keycloak.provider
Enum InvalidationHandler.ObjectType
- java.lang.Object
- 
- java.lang.Enum<InvalidationHandler.ObjectType>
- 
- org.keycloak.provider.InvalidationHandler.ObjectType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<InvalidationHandler.ObjectType>,- InvalidationHandler.InvalidableObjectType
 - Enclosing interface:
- InvalidationHandler
 
 public static enum InvalidationHandler.ObjectType extends Enum<InvalidationHandler.ObjectType> implements InvalidationHandler.InvalidableObjectType 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description _ALL_CLIENTCLIENT_SCOPECOMPONENTGROUPPROVIDER_FACTORYREALMROLEUSER
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static InvalidationHandler.ObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static InvalidationHandler.ObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
_ALL_public static final InvalidationHandler.ObjectType _ALL_ 
 - 
REALMpublic static final InvalidationHandler.ObjectType REALM 
 - 
CLIENTpublic static final InvalidationHandler.ObjectType CLIENT 
 - 
CLIENT_SCOPEpublic static final InvalidationHandler.ObjectType CLIENT_SCOPE 
 - 
USERpublic static final InvalidationHandler.ObjectType USER 
 - 
ROLEpublic static final InvalidationHandler.ObjectType ROLE 
 - 
GROUPpublic static final InvalidationHandler.ObjectType GROUP 
 - 
COMPONENTpublic static final InvalidationHandler.ObjectType COMPONENT 
 - 
PROVIDER_FACTORYpublic static final InvalidationHandler.ObjectType PROVIDER_FACTORY 
 
- 
 - 
Method Detail- 
valuespublic static InvalidationHandler.ObjectType[] 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 (InvalidationHandler.ObjectType c : InvalidationHandler.ObjectType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static InvalidationHandler.ObjectType 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
 
 
- 
 
-