public static enum Match.IncludeRange extends Enum<Match.IncludeRange>
| Modifier and Type | Method and Description |
|---|---|
static Match.IncludeRange |
toRange(String str)
Converts string to the constant enum.
|
static Match.IncludeRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Match.IncludeRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Match.IncludeRange NONE
public static final Match.IncludeRange FOLLOWING
public static final Match.IncludeRange ALL
public static Match.IncludeRange[] values()
for (Match.IncludeRange c : Match.IncludeRange.values()) System.out.println(c);
public static Match.IncludeRange 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 nullpublic static Match.IncludeRange toRange(String str)
str - String value to be converted.Copyright © 2005-2011 Daniel Naber