Enum MultiReferenceFilterType
- java.lang.Object
-
- java.lang.Enum<MultiReferenceFilterType>
-
- org.teamapps.universaldb.index.reference.multi.MultiReferenceFilterType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MultiReferenceFilterType>,java.lang.constant.Constable
public enum MultiReferenceFilterType extends java.lang.Enum<MultiReferenceFilterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINS_ALLCONTAINS_ANYCONTAINS_ANY_NOTCONTAINS_NONEENTRY_COUNT_EQUALSENTRY_COUNT_GREATERENTRY_COUNT_LESSEREQUALSIS_EMPTYIS_NOT_EMPTYNOT_EQUALS
-
Method Summary
Modifier and Type Method Description static MultiReferenceFilterTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MultiReferenceFilterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final MultiReferenceFilterType EQUALS
-
NOT_EQUALS
public static final MultiReferenceFilterType NOT_EQUALS
-
IS_EMPTY
public static final MultiReferenceFilterType IS_EMPTY
-
IS_NOT_EMPTY
public static final MultiReferenceFilterType IS_NOT_EMPTY
-
CONTAINS_ANY
public static final MultiReferenceFilterType CONTAINS_ANY
-
CONTAINS_NONE
public static final MultiReferenceFilterType CONTAINS_NONE
-
CONTAINS_ALL
public static final MultiReferenceFilterType CONTAINS_ALL
-
CONTAINS_ANY_NOT
public static final MultiReferenceFilterType CONTAINS_ANY_NOT
-
ENTRY_COUNT_EQUALS
public static final MultiReferenceFilterType ENTRY_COUNT_EQUALS
-
ENTRY_COUNT_GREATER
public static final MultiReferenceFilterType ENTRY_COUNT_GREATER
-
ENTRY_COUNT_LESSER
public static final MultiReferenceFilterType ENTRY_COUNT_LESSER
-
-
Method Detail
-
values
public static MultiReferenceFilterType[] 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
public static MultiReferenceFilterType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-