Enum MetadataStorageMode
- All Implemented Interfaces:
Serializable,Comparable<MetadataStorageMode>
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
-
Enum Constant Summary
Enum ConstantsEnum 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 MetadataStorageModeReturns the enum constant of this type with the specified name.static MetadataStorageMode[]values()Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-