public enum DeleteMethod extends Enum<DeleteMethod>
| Enum Constant and Description |
|---|
NO |
PERSISTENT |
TRANSIENT |
| Modifier and Type | Method and Description |
|---|---|
static DeleteMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeleteMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteMethod NO
public static final DeleteMethod PERSISTENT
public static final DeleteMethod TRANSIENT
public static DeleteMethod[] values()
for (DeleteMethod c : DeleteMethod.values()) System.out.println(c);
public static DeleteMethod 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 nullCopyright © 2020. All rights reserved.