Package org.nuxeo.ecm.core.search
Enum Class LimitationKind
- All Implemented Interfaces:
Serializable,Comparable<LimitationKind>,Constable
Category of search limitation. Enables consumers to distinguish root causes and take appropriate action.
- Since:
- 2025.17
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndex mapping does not support the requested operation (e.g. field not found, missing lowercase mapping for ILIKE).Specific operator not supported for this field (e.g.Client does not support this capability (e.g. aggregate type sum, highlight, multi-repositories). -
Method Summary
Modifier and TypeMethodDescriptionstatic LimitationKindReturns the enum constant of this class with the specified name.static LimitationKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNSUPPORTED
Client does not support this capability (e.g. aggregate type sum, highlight, multi-repositories). The message provides the detail. -
INDEX_MAPPING
Index mapping does not support the requested operation (e.g. field not found, missing lowercase mapping for ILIKE). -
OPERATOR_NOT_SUPPORTED
Specific operator not supported for this field (e.g. STARTSWITH only on ecm:path).
-
-
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
-