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