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