Package com.mayam.wf.config.shared
Enum Class TableSchemaDetails.Ordering
- All Implemented Interfaces:
Serializable
,Comparable<TableSchemaDetails.Ordering>
,Constable
- Enclosing class:
TableSchemaDetails
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionStrictly append only, no reordering or deletes.Allows deletions of existing rows, but no reordering or insertions.If primaryColumn is set and is associated with a Cvl, one row is created for each and every value.Rows may be freely reordered, inserted, and deleted. -
Method Summary
Modifier and TypeMethodDescriptionstatic TableSchemaDetails.Ordering
Returns the enum constant of this class with the specified name.static TableSchemaDetails.Ordering[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
APPEND_ONLY
Strictly append only, no reordering or deletes. -
DELETE_ONLY
Allows deletions of existing rows, but no reordering or insertions. -
FIXED_ROWS
If primaryColumn is set and is associated with a Cvl, one row is created for each and every value. No inserts, reordering, or deletes allowed. If the two conditions are not met, FIXED_ROWS will maintaininvalid reference
TableSchema#max
-
REORDER_ALLOWED
Rows may be freely reordered, inserted, and deleted.
-
-
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
-