public enum CreateMode extends Enum<CreateMode>
Enum Constant and Description |
---|
DEFAULT
Enum value default.
|
RECOVER
Enum value recover.
|
Modifier and Type | Method and Description |
---|---|
static CreateMode |
fromString(String value)
Parses a serialized value to a CreateMode instance.
|
String |
toString() |
static CreateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreateMode RECOVER
public static final CreateMode DEFAULT
public static CreateMode[] values()
for (CreateMode c : CreateMode.values()) System.out.println(c);
public static CreateMode 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 CreateMode fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<CreateMode>
Copyright © 2019. All rights reserved.