Package org.carrot2.language
Enum GlobDictionary.MatchType
- java.lang.Object
-
- java.lang.Enum<GlobDictionary.MatchType>
-
- org.carrot2.language.GlobDictionary.MatchType
-
- All Implemented Interfaces:
Serializable
,Comparable<GlobDictionary.MatchType>
- Enclosing class:
- GlobDictionary
public static enum GlobDictionary.MatchType extends Enum<GlobDictionary.MatchType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANY
Any single token (possessive).ANY_OF_TYPE
Any single token matching a type bitfield.NORMALIZED
Normalized token image match.VERBATIM
Vermatim token image match.ZERO_OR_MORE_POSSESSIVE
Wildcard match (zero or more tokens, possessive variant).ZERO_OR_MORE_RELUCTANT
Wildcard match (zero or more tokens, reluctant variant).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GlobDictionary.MatchType
valueOf(String name)
Returns the enum constant of this type with the specified name.static GlobDictionary.MatchType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZERO_OR_MORE_POSSESSIVE
public static final GlobDictionary.MatchType ZERO_OR_MORE_POSSESSIVE
Wildcard match (zero or more tokens, possessive variant).
-
ZERO_OR_MORE_RELUCTANT
public static final GlobDictionary.MatchType ZERO_OR_MORE_RELUCTANT
Wildcard match (zero or more tokens, reluctant variant).
-
ANY
public static final GlobDictionary.MatchType ANY
Any single token (possessive).
-
ANY_OF_TYPE
public static final GlobDictionary.MatchType ANY_OF_TYPE
Any single token matching a type bitfield.
-
VERBATIM
public static final GlobDictionary.MatchType VERBATIM
Vermatim token image match.
-
NORMALIZED
public static final GlobDictionary.MatchType NORMALIZED
Normalized token image match.
-
-
Method Detail
-
values
public static GlobDictionary.MatchType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GlobDictionary.MatchType c : GlobDictionary.MatchType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GlobDictionary.MatchType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-