Package org.apache.lucene.search.spans
Enum SpanPositionCheckQuery.AcceptStatus
java.lang.Object
java.lang.Enum<SpanPositionCheckQuery.AcceptStatus>
org.apache.lucene.search.spans.SpanPositionCheckQuery.AcceptStatus
- All Implemented Interfaces:
Serializable
,Comparable<SpanPositionCheckQuery.AcceptStatus>
- Enclosing class:
- SpanPositionCheckQuery
protected static enum SpanPositionCheckQuery.AcceptStatus
extends Enum<SpanPositionCheckQuery.AcceptStatus>
Return value for
SpanPositionCheckQuery.acceptPosition(Spans)
.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates the match should be rejectedIndicates the match should be rejected, and the enumeration should advance to the next document.Indicates the match should be accepted -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static SpanPositionCheckQuery.AcceptStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
YES
Indicates the match should be accepted -
NO
Indicates the match should be rejected -
NO_AND_ADVANCE
Indicates the match should be rejected, and the enumeration should advance to the next document.
-
-
Method Details
-
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
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-