Package org.keycloak.models.map.common
Enum AbstractMapProviderFactory.MapProviderObjectType
- java.lang.Object
-
- java.lang.Enum<AbstractMapProviderFactory.MapProviderObjectType>
-
- org.keycloak.models.map.common.AbstractMapProviderFactory.MapProviderObjectType
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractMapProviderFactory.MapProviderObjectType>
,InvalidationHandler.InvalidableObjectType
- Enclosing class:
- AbstractMapProviderFactory<T extends Provider,V extends AbstractEntity,M>
public static enum AbstractMapProviderFactory.MapProviderObjectType extends Enum<AbstractMapProviderFactory.MapProviderObjectType> implements InvalidationHandler.InvalidableObjectType
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractMapProviderFactory.MapProviderObjectType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractMapProviderFactory.MapProviderObjectType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType CLIENT_BEFORE_REMOVE
-
CLIENT_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType CLIENT_AFTER_REMOVE
-
CLIENT_SCOPE_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType CLIENT_SCOPE_BEFORE_REMOVE
-
CLIENT_SCOPE_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType CLIENT_SCOPE_AFTER_REMOVE
-
GROUP_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType GROUP_BEFORE_REMOVE
-
GROUP_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType GROUP_AFTER_REMOVE
-
REALM_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType REALM_BEFORE_REMOVE
-
REALM_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType REALM_AFTER_REMOVE
-
RESOURCE_SERVER_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType RESOURCE_SERVER_BEFORE_REMOVE
-
RESOURCE_SERVER_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType RESOURCE_SERVER_AFTER_REMOVE
-
ROLE_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType ROLE_BEFORE_REMOVE
-
ROLE_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType ROLE_AFTER_REMOVE
-
USER_BEFORE_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType USER_BEFORE_REMOVE
-
USER_AFTER_REMOVE
public static final AbstractMapProviderFactory.MapProviderObjectType USER_AFTER_REMOVE
-
-
Method Detail
-
values
public static AbstractMapProviderFactory.MapProviderObjectType[] 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 (AbstractMapProviderFactory.MapProviderObjectType c : AbstractMapProviderFactory.MapProviderObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractMapProviderFactory.MapProviderObjectType 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
-
-