public enum StoreValuesType extends Enum<StoreValuesType>
| Enum Constant and Description |
|---|
ID
Track only value presence, to allow use of the EXISTS() function.
|
NONE
Do not track values by the view
|
| Modifier and Type | Method and Description |
|---|---|
static StoreValuesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoreValuesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreValuesType NONE
public static final StoreValuesType ID
public static StoreValuesType[] values()
for (StoreValuesType c : StoreValuesType.values()) System.out.println(c);
public static StoreValuesType 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 © 2016–2023 ArangoDB GmbH. All rights reserved.