public static enum SequenceMatcher.FindType extends Enum<SequenceMatcher.FindType>
| Enum Constant and Description |
|---|
FIND_ALL |
FIND_NONOVERLAPPING |
| Modifier and Type | Method and Description |
|---|---|
static SequenceMatcher.FindType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceMatcher.FindType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceMatcher.FindType FIND_NONOVERLAPPING
public static final SequenceMatcher.FindType FIND_ALL
public static SequenceMatcher.FindType[] values()
for (SequenceMatcher.FindType c : SequenceMatcher.FindType.values()) System.out.println(c);
public static SequenceMatcher.FindType 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 null