Module org.apache.lucene.queries
Package org.apache.lucene.queries.spans
Enum Class FilterSpans.AcceptStatus
- All Implemented Interfaces:
Serializable
,Comparable<FilterSpans.AcceptStatus>
,Constable
- Enclosing class:
- FilterSpans
Status returned from
FilterSpans.accept(Spans)
that indicates whether a candidate match
should be accepted, rejected, or rejected and move on to the next document.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates the match should be rejectedIndicates the match should be rejected, and the enumeration may continue with the next document.Indicates the match should be accepted -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic FilterSpans.AcceptStatus
Returns the enum constant of this class with the specified name.static FilterSpans.AcceptStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
YES
Indicates the match should be accepted -
NO
Indicates the match should be rejected -
NO_MORE_IN_CURRENT_DOC
Indicates the match should be rejected, and the enumeration may continue with the next document.
-
-
Constructor Details
-
AcceptStatus
private AcceptStatus()
-
-
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
-