public enum ArangoSearchCompression extends Enum<ArangoSearchCompression>
Enum Constant and Description |
---|
lz4
(default): use LZ4 fast compression.
|
none
disable compression to trade space for speed.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static ArangoSearchCompression |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArangoSearchCompression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArangoSearchCompression lz4
public static final ArangoSearchCompression none
public static ArangoSearchCompression[] values()
for (ArangoSearchCompression c : ArangoSearchCompression.values()) System.out.println(c);
public static ArangoSearchCompression 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 nullpublic String getValue()
Copyright © 2016–2023 ArangoDB GmbH. All rights reserved.