public enum MappingPreference extends Enum<MappingPreference>
| Enum Constant and Description |
|---|
INDEXED_ONLY |
MAPPED_ONLY |
MAPPED_OR_INDEXED |
| Modifier and Type | Method and Description |
|---|---|
static MappingPreference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingPreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingPreference MAPPED_ONLY
public static final MappingPreference INDEXED_ONLY
public static final MappingPreference MAPPED_OR_INDEXED
public static MappingPreference[] values()
for (MappingPreference c : MappingPreference.values()) System.out.println(c);
public static MappingPreference 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.