public static enum RegexQuery.RegexFlag extends java.lang.Enum<RegexQuery.RegexFlag>
Enum Constant and Description |
---|
ALL |
ANYSTRING |
AUTOMATON |
COMPLEMENT |
EMPTY |
INTERSECTION |
INTERVAL |
NONE |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static RegexQuery.RegexFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegexQuery.RegexFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexQuery.RegexFlag ALL
public static final RegexQuery.RegexFlag ANYSTRING
public static final RegexQuery.RegexFlag AUTOMATON
public static final RegexQuery.RegexFlag COMPLEMENT
public static final RegexQuery.RegexFlag EMPTY
public static final RegexQuery.RegexFlag INTERSECTION
public static final RegexQuery.RegexFlag INTERVAL
public static final RegexQuery.RegexFlag NONE
public static RegexQuery.RegexFlag[] values()
for (RegexQuery.RegexFlag c : RegexQuery.RegexFlag.values()) System.out.println(c);
public static RegexQuery.RegexFlag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()