Package org.apache.cassandra.schema
Enum TableParams.Option
- java.lang.Object
-
- java.lang.Enum<TableParams.Option>
-
- org.apache.cassandra.schema.TableParams.Option
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TableParams.Option>
- Enclosing class:
- TableParams
public static enum TableParams.Option extends java.lang.Enum<TableParams.Option>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static TableParams.Option
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TableParams.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALLOW_AUTO_SNAPSHOT
public static final TableParams.Option ALLOW_AUTO_SNAPSHOT
-
BLOOM_FILTER_FP_CHANCE
public static final TableParams.Option BLOOM_FILTER_FP_CHANCE
-
CACHING
public static final TableParams.Option CACHING
-
COMMENT
public static final TableParams.Option COMMENT
-
COMPACTION
public static final TableParams.Option COMPACTION
-
COMPRESSION
public static final TableParams.Option COMPRESSION
-
MEMTABLE
public static final TableParams.Option MEMTABLE
-
DEFAULT_TIME_TO_LIVE
public static final TableParams.Option DEFAULT_TIME_TO_LIVE
-
EXTENSIONS
public static final TableParams.Option EXTENSIONS
-
GC_GRACE_SECONDS
public static final TableParams.Option GC_GRACE_SECONDS
-
INCREMENTAL_BACKUPS
public static final TableParams.Option INCREMENTAL_BACKUPS
-
MAX_INDEX_INTERVAL
public static final TableParams.Option MAX_INDEX_INTERVAL
-
MEMTABLE_FLUSH_PERIOD_IN_MS
public static final TableParams.Option MEMTABLE_FLUSH_PERIOD_IN_MS
-
MIN_INDEX_INTERVAL
public static final TableParams.Option MIN_INDEX_INTERVAL
-
SPECULATIVE_RETRY
public static final TableParams.Option SPECULATIVE_RETRY
-
ADDITIONAL_WRITE_POLICY
public static final TableParams.Option ADDITIONAL_WRITE_POLICY
-
CRC_CHECK_CHANCE
public static final TableParams.Option CRC_CHECK_CHANCE
-
CDC
public static final TableParams.Option CDC
-
READ_REPAIR
public static final TableParams.Option READ_REPAIR
-
-
Method Detail
-
values
public static TableParams.Option[] 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 (TableParams.Option c : TableParams.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableParams.Option 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TableParams.Option>
-
-