public enum SchemaGenerationStrategy extends Enum<SchemaGenerationStrategy>
| Enum Constant and Description |
|---|
MAP_AND_WRITE |
READ_AND_COUNT |
READ_AND_MAP |
| Modifier and Type | Method and Description |
|---|---|
static SchemaGenerationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaGenerationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaGenerationStrategy MAP_AND_WRITE
public static final SchemaGenerationStrategy READ_AND_MAP
public static final SchemaGenerationStrategy READ_AND_COUNT
public static SchemaGenerationStrategy[] values()
for (SchemaGenerationStrategy c : SchemaGenerationStrategy.values()) System.out.println(c);
public static SchemaGenerationStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2021 DataStax. All rights reserved.