Enum Constant and Description |
---|
FIND
Find again.
|
NONE
No action.
|
REPLACE
Replace again.
|
Modifier and Type | Method and Description |
---|---|
static FindType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FindType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FindType NONE
public static final FindType FIND
public static final FindType REPLACE
public static FindType[] values()
for (FindType c : FindType.values()) System.out.println(c);
public static FindType 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 null