Enum Class MetadataStorageMode
- All Implemented Interfaces:
Serializable
,Comparable<MetadataStorageMode>
,Constable
Metadata storage mode
- COLUMN_PER_KEY: for static metadata, when you know in advance the list of metadata
- COMBINED_JSON: For dynamic metadata, when you don't know the list of metadata that will be used.
- COMBINED_JSONB: Same as JSON, but stored in a binary way. Optimized for query on large dataset.
Default value: COMBINED_JSON
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCOLUMN_PER_KEY: for static metadata, when you know in advance the list of metadataCOMBINED_JSON: For dynamic metadata, when you don't know the list of metadata that will be used.COMBINED_JSONB: Same as JSON, but stored in a binary way. -
Method Summary
Modifier and TypeMethodDescriptionstatic MetadataStorageMode
Returns the enum constant of this class with the specified name.static MetadataStorageMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COLUMN_PER_KEY
COLUMN_PER_KEY: for static metadata, when you know in advance the list of metadata -
COMBINED_JSON
COMBINED_JSON: For dynamic metadata, when you don't know the list of metadata that will be used. -
COMBINED_JSONB
COMBINED_JSONB: Same as JSON, but stored in a binary way. Optimized for query on large dataset.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-