public enum InstanceIdentifierKind extends java.lang.Enum<InstanceIdentifierKind>
| Enum Constant and Description |
|---|
IDENTITY_HASHCODE
Use the system identity hash code of the instance as identifier.
|
NONE
No instance identifier.
|
THREAD_ID
Use the thread id as identifier.
|
| Modifier and Type | Field and Description |
|---|---|
static InstanceIdentifierKind |
DEFAULT
The default instance identifier kind.
|
| Modifier and Type | Method and Description |
|---|---|
static InstanceIdentifierKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstanceIdentifierKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstanceIdentifierKind NONE
public static final InstanceIdentifierKind THREAD_ID
public static final InstanceIdentifierKind IDENTITY_HASHCODE
public static final InstanceIdentifierKind DEFAULT
public static InstanceIdentifierKind[] values()
for (InstanceIdentifierKind c : InstanceIdentifierKind.values()) System.out.println(c);
public static InstanceIdentifierKind 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