public static enum ReplaceResult.State extends java.lang.Enum<ReplaceResult.State>
| Enum Constant and Description | 
|---|
CANCELLED  | 
DONE  | 
ERROR  | 
NOT_FOUND  | 
PROMPTED  | 
| Modifier and Type | Method and Description | 
|---|---|
static ReplaceResult.State | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ReplaceResult.State[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ReplaceResult.State DONE
public static final ReplaceResult.State PROMPTED
public static final ReplaceResult.State NOT_FOUND
public static final ReplaceResult.State CANCELLED
public static final ReplaceResult.State ERROR
public static ReplaceResult.State[] values()
for (ReplaceResult.State c : ReplaceResult.State.values()) System.out.println(c);
public static ReplaceResult.State 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