Package sailpoint.object
Enum Filter.LogicalOperation
- All Implemented Interfaces:
Serializable,Comparable<Filter.LogicalOperation>
- Enclosing class:
- Filter
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionApply a filter to elements of a collection.Checks that a multi-valued property's list of values is a subset of (or contains all elements from) another list of values.Checks that a property is equal to a value.Checks that a property is greater than or equal to a value.Checks that a property is greater than a value.Checks that a single-valued property's value is one of a given list of values.Checks that a property is not null.Checks that a property is not null.Joins a property from one class to a property on another.Checks that a property is less than or equal to a value.Checks that a property is like a given string using a MatchMode.Checks that a property is less than a value.Checks that a property is not equal to a value.Checks that a property is not null. -
Method Summary
Modifier and TypeMethodDescriptionstatic Filter.LogicalOperationReturns the enum constant of this type with the specified name.static Filter.LogicalOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EQ
Checks that a property is equal to a value. -
NE
Checks that a property is not equal to a value. -
LT
Checks that a property is less than a value. -
GT
Checks that a property is greater than a value. -
LE
Checks that a property is less than or equal to a value. -
GE
Checks that a property is greater than or equal to a value. -
IN
Checks that a single-valued property's value is one of a given list of values. -
CONTAINS_ALL
Checks that a multi-valued property's list of values is a subset of (or contains all elements from) another list of values. -
LIKE
Checks that a property is like a given string using a MatchMode. -
NOTNULL
Checks that a property is not null. -
ISNULL
Checks that a property is not null. -
ISEMPTY
Checks that a property is not null. -
JOIN
Joins a property from one class to a property on another. -
COLLECTION_CONDITION
Apply a filter to elements of a collection.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getStringRepresentation
-
getDisplayName
-
getInverseOperation
-