Enum I_DvTypeAdapter.AdapterType
- java.lang.Object
-
- java.lang.Enum<I_DvTypeAdapter.AdapterType>
-
- org.ehrbase.ehr.encode.wrappers.json.I_DvTypeAdapter.AdapterType
-
- All Implemented Interfaces:
Serializable,Comparable<I_DvTypeAdapter.AdapterType>
- Enclosing interface:
- I_DvTypeAdapter
public static enum I_DvTypeAdapter.AdapterType extends Enum<I_DvTypeAdapter.AdapterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _DBJSON2RAWJSONDBJSON2RAWJSONPG_JSONBRAW_JSON
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static I_DvTypeAdapter.AdapterTypevalueOf(String name)Returns the enum constant of this type with the specified name.static I_DvTypeAdapter.AdapterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PG_JSONB
public static final I_DvTypeAdapter.AdapterType PG_JSONB
-
RAW_JSON
public static final I_DvTypeAdapter.AdapterType RAW_JSON
-
_DBJSON2RAWJSON
public static final I_DvTypeAdapter.AdapterType _DBJSON2RAWJSON
-
DBJSON2RAWJSON
public static final I_DvTypeAdapter.AdapterType DBJSON2RAWJSON
-
-
Method Detail
-
values
public static I_DvTypeAdapter.AdapterType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (I_DvTypeAdapter.AdapterType c : I_DvTypeAdapter.AdapterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static I_DvTypeAdapter.AdapterType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-