Enum Class TableOption.CompressionOption
java.lang.Object
java.lang.Enum<TableOption.CompressionOption>
org.springframework.data.cassandra.core.cql.keyspace.TableOption.CompressionOption
- All Implemented Interfaces:
Serializable
,Comparable<TableOption.CompressionOption>
,Constable
,Option
- Enclosing class:
- TableOption
public static enum TableOption.CompressionOption
extends Enum<TableOption.CompressionOption>
implements Option
Known compression options.
- Author:
- Matthew T. Adams
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionchunk_length_kb
crc_check_chance
sstable_compression
-
Method Summary
Modifier and TypeMethodDescriptionvoid
checkValue
(Object value) Checks that the given value can be coerced into the type given byOption.getType()
.boolean
Whether this option should escape single quotes in its value.getName()
The (usually lower-cased, underscore-separated) name of this table option.Class<?>
getType()
The type that values must be able to be coerced into for this option.boolean
isCoerceable
(Object value) Tests whether the given value can be coerced into the type given byOption.getType()
.boolean
Whether this option's value should be single-quoted.boolean
Whether this option requires a value.boolean
Whether this option takes a value.toString()
First ensures that the given value is coerceable into the type expected by this option, then returns the result ofObject.toString()
called on the given value.Returns the enum constant of this class with the specified name.static TableOption.CompressionOption[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SSTABLE_COMPRESSION
sstable_compression
-
CHUNK_LENGTH_KB
chunk_length_kb
-
CRC_CHECK_CHANCE
crc_check_chance
-
-
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
-
getType
Description copied from interface:Option
The type that values must be able to be coerced into for this option. -
takesValue
public boolean takesValue()Description copied from interface:Option
Whether this option takes a value.- Specified by:
takesValue
in interfaceOption
-
getName
Description copied from interface:Option
The (usually lower-cased, underscore-separated) name of this table option. -
escapesValue
public boolean escapesValue()Description copied from interface:Option
Whether this option should escape single quotes in its value.- Specified by:
escapesValue
in interfaceOption
-
quotesValue
public boolean quotesValue()Description copied from interface:Option
Whether this option's value should be single-quoted.- Specified by:
quotesValue
in interfaceOption
-
requiresValue
public boolean requiresValue()Description copied from interface:Option
Whether this option requires a value.- Specified by:
requiresValue
in interfaceOption
-
checkValue
Description copied from interface:Option
Checks that the given value can be coerced into the type given byOption.getType()
.- Specified by:
checkValue
in interfaceOption
-
isCoerceable
Description copied from interface:Option
Tests whether the given value can be coerced into the type given byOption.getType()
.- Specified by:
isCoerceable
in interfaceOption
-
toString
- Overrides:
toString
in classEnum<TableOption.CompressionOption>
-
toString
Description copied from interface:Option
First ensures that the given value is coerceable into the type expected by this option, then returns the result ofObject.toString()
called on the given value. If this option is escaping quotes (Option.escapesValue()
istrue
), then single quotes will be escaped, and if this option is quoting values (Option.quotesValue()
istrue
), then the value will be surrounded by single quotes. Given null, returns an empty string.
-