Uses of Class
de.aristaflow.adept2.model.orgmodel.CmpOperator
-
Packages that use CmpOperator Package Description de.aristaflow.adept2.core.orgmodelmanager de.aristaflow.adept2.core.orgmodelmanager.parser de.aristaflow.adept2.model.orgmodel -
-
Uses of CmpOperator in de.aristaflow.adept2.core.orgmodelmanager
Methods in de.aristaflow.adept2.core.orgmodelmanager that return CmpOperator Modifier and Type Method Description CmpOperator
Filter.Selection. getOperator()
Returns the comparison operator.Methods in de.aristaflow.adept2.core.orgmodelmanager with parameters of type CmpOperator Modifier and Type Method Description void
Filter. addSelection(String attrName, CmpOperator cmpOperator, Serializable value)
Adds a new selection to theFilter
.List<Entity>
ModelExplorer. getEntities(SessionToken session, EntityType entType, String attrName, CmpOperator cmpOperator, Serializable value, boolean excludeDisabled, String... attributes)
This method returns a list of all entities where the given attribute matches the comparison.RemoteIterator<List<Entity>>
ModelExplorer. getEntitiesIterator(SessionToken session, EntityType entType, String attrName, CmpOperator cmpOperator, Serializable value, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getEntities(SessionToken, EntityType, String, CmpOperator, Serializable, boolean, String...)
but with partial retrieval of the entities.Constructors in de.aristaflow.adept2.core.orgmodelmanager with parameters of type CmpOperator Constructor Description Filter(String attrName, CmpOperator cmpOperator, Serializable value)
Creates a new filter with just one selection for the designated attribute, operator and value. -
Uses of CmpOperator in de.aristaflow.adept2.core.orgmodelmanager.parser
Methods in de.aristaflow.adept2.core.orgmodelmanager.parser that return CmpOperator Modifier and Type Method Description CmpOperator
AtomicSelection. getCmpOperator()
Returns the comparison operator to be used in the selection.Constructors in de.aristaflow.adept2.core.orgmodelmanager.parser with parameters of type CmpOperator Constructor Description AtomicSelection(EntityType entityType, String attrName, CmpOperator cmpOperator, Object value)
Constructs a newAtomicSelection
. -
Uses of CmpOperator in de.aristaflow.adept2.model.orgmodel
Methods in de.aristaflow.adept2.model.orgmodel that return CmpOperator Modifier and Type Method Description static CmpOperator
CmpOperator. getCmpOperatorFor(String symbol)
Returns theCmpOperator
for the given symbol ornull
if the symbol is not recognised.CmpOperator
CmpOperator. negate()
Returns the negated version of this operator.static CmpOperator
CmpOperator. valueOf(String name)
Returns the enum constant of this type with the specified name.static CmpOperator[]
CmpOperator. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-