Enum ModelCriteriaNode.ExtOperator
- java.lang.Object
-
- java.lang.Enum<ModelCriteriaNode.ExtOperator>
-
- org.keycloak.models.map.storage.criteria.ModelCriteriaNode.ExtOperator
-
- All Implemented Interfaces:
Serializable
,Comparable<ModelCriteriaNode.ExtOperator>
- Enclosing class:
- ModelCriteriaNode<M>
public static enum ModelCriteriaNode.ExtOperator extends Enum<ModelCriteriaNode.ExtOperator>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract <M,C extends ModelCriteriaBuilder<M,C>>
Capply(C mcbCreator, ModelCriteriaNode<M> node)
abstract String
toString(ModelCriteriaNode<?> node)
static ModelCriteriaNode.ExtOperator
valueOf(String name)
Returns the enum constant of this type with the specified name.static ModelCriteriaNode.ExtOperator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AND
public static final ModelCriteriaNode.ExtOperator AND
-
OR
public static final ModelCriteriaNode.ExtOperator OR
-
NOT
public static final ModelCriteriaNode.ExtOperator NOT
-
ATOMIC_FORMULA
public static final ModelCriteriaNode.ExtOperator ATOMIC_FORMULA
-
__FALSE__
public static final ModelCriteriaNode.ExtOperator __FALSE__
-
__TRUE__
public static final ModelCriteriaNode.ExtOperator __TRUE__
-
-
Method Detail
-
values
public static ModelCriteriaNode.ExtOperator[] 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 (ModelCriteriaNode.ExtOperator c : ModelCriteriaNode.ExtOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelCriteriaNode.ExtOperator 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
-
apply
public abstract <M,C extends ModelCriteriaBuilder<M,C>> C apply(C mcbCreator, ModelCriteriaNode<M> node)
-
toString
public abstract String toString(ModelCriteriaNode<?> node)
-
-