Enum PostgresAdapter.MessageKey
- java.lang.Object
-
- java.lang.Enum<PostgresAdapter.MessageKey>
-
- org.linuxforhealth.fhir.database.utils.postgres.PostgresAdapter.MessageKey
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PostgresAdapter.MessageKey>
- Enclosing class:
- PostgresAdapter
protected static enum PostgresAdapter.MessageKey extends java.lang.Enum<PostgresAdapter.MessageKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTER_TABLE_SEQ_CACHE
CREATE_PERM
CREATE_PROC
CREATE_VAR
DISABLE_ROW_ACCESS
DROP_PERMISSION
DROP_PROC
DROP_TYPE
DROP_VARIABLE
ENABLE_ROW_ACCESS
MULTITENANCY
PARTITIONING
ROW_ARR_TYPE
ROW_TYPE
TABLESPACE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PostgresAdapter.MessageKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PostgresAdapter.MessageKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MULTITENANCY
public static final PostgresAdapter.MessageKey MULTITENANCY
-
CREATE_VAR
public static final PostgresAdapter.MessageKey CREATE_VAR
-
CREATE_PERM
public static final PostgresAdapter.MessageKey CREATE_PERM
-
ENABLE_ROW_ACCESS
public static final PostgresAdapter.MessageKey ENABLE_ROW_ACCESS
-
DISABLE_ROW_ACCESS
public static final PostgresAdapter.MessageKey DISABLE_ROW_ACCESS
-
PARTITIONING
public static final PostgresAdapter.MessageKey PARTITIONING
-
ROW_TYPE
public static final PostgresAdapter.MessageKey ROW_TYPE
-
ROW_ARR_TYPE
public static final PostgresAdapter.MessageKey ROW_ARR_TYPE
-
DROP_TYPE
public static final PostgresAdapter.MessageKey DROP_TYPE
-
CREATE_PROC
public static final PostgresAdapter.MessageKey CREATE_PROC
-
DROP_PROC
public static final PostgresAdapter.MessageKey DROP_PROC
-
TABLESPACE
public static final PostgresAdapter.MessageKey TABLESPACE
-
ALTER_TABLE_SEQ_CACHE
public static final PostgresAdapter.MessageKey ALTER_TABLE_SEQ_CACHE
-
DROP_PERMISSION
public static final PostgresAdapter.MessageKey DROP_PERMISSION
-
DROP_VARIABLE
public static final PostgresAdapter.MessageKey DROP_VARIABLE
-
-
Method Detail
-
values
public static PostgresAdapter.MessageKey[] 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 (PostgresAdapter.MessageKey c : PostgresAdapter.MessageKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostgresAdapter.MessageKey valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-