Package org.geotools.api.filter
Enum Class MultiValuedFilter.MatchAction
- All Implemented Interfaces:
Serializable
,Comparable<MultiValuedFilter.MatchAction>
,Constable
- Enclosing interface:
- MultiValuedFilter
Enumerated type for MatchAction property (used by comparison and geometry operations): When one or more of the
operands evaluates to multiple values rather than a single value, which action should be taken?
For example, in case of a binary comparison, if there are n values for the left operand and m values for the right operand, there are n * m possible combinations that can be compared,
- ANY - if any of the possible combinations match, the result is true (aggregated OR)
- ALL - only if all of the possible combinations match, the result is true (aggregated AND)
- ONE - only if exactly one of the possible combinations match, the result is true (aggregated XOR)
- Author:
- Niels Charlier, Curtin University of Technology
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static MultiValuedFilter.MatchAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANY
-
ALL
-
ONE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-