public static enum Pattern.PatternType extends Enum<Pattern.PatternType>
| Modifier and Type | Method and Description |
|---|---|
static Pattern.PatternType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Pattern.PatternType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pattern.PatternType INCLUDE
public static final Pattern.PatternType EXCLUDE
public static Pattern.PatternType[] values()
for (Pattern.PatternType c : Pattern.PatternType.values()) System.out.println(c);
public static Pattern.PatternType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2004-2013. All Rights Reserved.