Package org.spongepowered.api.data
Enum Class KeyValueMatcher.Operator
- All Implemented Interfaces:
Serializable
,Comparable<KeyValueMatcher.Operator>
,Constable
- Enclosing interface:
KeyValueMatcher<V>
Represents a operator to match the
values of a key query.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMatches when the key and the matcher values are equal.Matches when the key is excluded from the matcher value.Matches when the key value is greater compared to the matcher value.Matches when the key value is greater or equal compared to the matcher value.Matches when the key value is included in the matcher value.Matches when the key value is less compared to the matcher value.Matches when the key value is less or equal compared to the matcher value.Matches when the key and the matcher values are equal. -
Method Summary
Modifier and TypeMethodDescriptionstatic KeyValueMatcher.Operator
Returns the enum constant of this class with the specified name.static KeyValueMatcher.Operator[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUAL
Matches when the key and the matcher values are equal. -
NOT_EQUAL
Matches when the key and the matcher values are equal. -
GREATER
Matches when the key value is greater compared to the matcher value. -
GREATER_OR_EQUAL
Matches when the key value is greater or equal compared to the matcher value. -
LESS
Matches when the key value is less compared to the matcher value. -
LESS_OR_EQUAL
Matches when the key value is less or equal compared to the matcher value. -
INCLUDES
Matches when the key value is included in the matcher value. For example, when a collection has a subset of elements of another collection. -
EXCLUDES
Matches when the key is excluded from the matcher value. This is the inverted operator ofINCLUDES
.
-
-
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
-