public enum ConsolidationType extends Enum<ConsolidationType>
| Enum Constant and Description |
|---|
BYTES_ACCUM
Deprecated.
The “bytes_accum” policy type is deprecated and remains in ArangoSearch for backwards compatibility
with the older versions. Please make sure to always use the “tier” policy instead.
|
TIER |
| Modifier and Type | Method and Description |
|---|---|
static ConsolidationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsolidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final ConsolidationType BYTES_ACCUM
public static final ConsolidationType TIER
public static ConsolidationType[] values()
for (ConsolidationType c : ConsolidationType.values()) System.out.println(c);
public static ConsolidationType 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.