| Enum Constant and Description |
|---|
Bruteforce |
Date |
Dictionary |
Regex |
Repeat |
Sequence |
Spatial |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
value() |
static Pattern |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Pattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pattern Bruteforce
public static final Pattern Dictionary
public static final Pattern Spatial
public static final Pattern Repeat
public static final Pattern Sequence
public static final Pattern Regex
public static final Pattern Date
public static Pattern[] values()
for (Pattern c : Pattern.values()) System.out.println(c);
public static Pattern 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 java.lang.String value()