Package org.apache.solr.common.params
Enum TermsParams.TermsRegexpFlag
- java.lang.Object
- 
- java.lang.Enum<TermsParams.TermsRegexpFlag>
- 
- org.apache.solr.common.params.TermsParams.TermsRegexpFlag
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<TermsParams.TermsRegexpFlag>
 - Enclosing interface:
- TermsParams
 
 public static enum TermsParams.TermsRegexpFlag extends Enum<TermsParams.TermsRegexpFlag> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CANON_EQCASE_INSENSITIVECOMMENTSDOTALLLITERALMULTILINEUNICODE_CASEUNIX_LINES
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static TermsParams.TermsRegexpFlagvalueOf(String name)Returns the enum constant of this type with the specified name.static TermsParams.TermsRegexpFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
UNIX_LINESpublic static final TermsParams.TermsRegexpFlag UNIX_LINES 
 - 
CASE_INSENSITIVEpublic static final TermsParams.TermsRegexpFlag CASE_INSENSITIVE 
 - 
COMMENTSpublic static final TermsParams.TermsRegexpFlag COMMENTS 
 - 
MULTILINEpublic static final TermsParams.TermsRegexpFlag MULTILINE 
 - 
LITERALpublic static final TermsParams.TermsRegexpFlag LITERAL 
 - 
DOTALLpublic static final TermsParams.TermsRegexpFlag DOTALL 
 - 
UNICODE_CASEpublic static final TermsParams.TermsRegexpFlag UNICODE_CASE 
 - 
CANON_EQpublic static final TermsParams.TermsRegexpFlag CANON_EQ 
 
- 
 - 
Method Detail- 
valuespublic static TermsParams.TermsRegexpFlag[] 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 (TermsParams.TermsRegexpFlag c : TermsParams.TermsRegexpFlag.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static TermsParams.TermsRegexpFlag 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 name
- NullPointerException- if the argument is null
 
 - 
getValuepublic int getValue() 
 
- 
 
-