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 SummaryAll 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 StringtoString(ModelCriteriaNode<?> node)static ModelCriteriaNode.ExtOperatorvalueOf(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- 
ANDpublic static final ModelCriteriaNode.ExtOperator AND 
 - 
ORpublic static final ModelCriteriaNode.ExtOperator OR 
 - 
NOTpublic static final ModelCriteriaNode.ExtOperator NOT 
 - 
ATOMIC_FORMULApublic static final ModelCriteriaNode.ExtOperator ATOMIC_FORMULA 
 - 
__FALSE__public static final ModelCriteriaNode.ExtOperator __FALSE__ 
 - 
__TRUE__public static final ModelCriteriaNode.ExtOperator __TRUE__ 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
applypublic abstract <M,C extends ModelCriteriaBuilder<M,C>> C apply(C mcbCreator, ModelCriteriaNode<M> node) 
 - 
toStringpublic abstract String toString(ModelCriteriaNode<?> node) 
 
- 
 
-