public enum EngineProperty extends Enum<EngineProperty>
| Enum Constant and Description |
|---|
CLUSTERING_POOL_NAME |
COMPACTION_POOL_NAME |
DELTASYNC_POOL_NAME |
EMBEDDED_SERVER_HOST |
MEMORY_FRACTION_IN_USE |
TOTAL_CORES_PER_EXECUTOR |
TOTAL_MEMORY_AVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static EngineProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EngineProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EngineProperty EMBEDDED_SERVER_HOST
public static final EngineProperty COMPACTION_POOL_NAME
public static final EngineProperty CLUSTERING_POOL_NAME
public static final EngineProperty TOTAL_CORES_PER_EXECUTOR
public static final EngineProperty TOTAL_MEMORY_AVAILABLE
public static final EngineProperty MEMORY_FRACTION_IN_USE
public static final EngineProperty DELTASYNC_POOL_NAME
public static EngineProperty[] values()
for (EngineProperty c : EngineProperty.values()) System.out.println(c);
public static EngineProperty 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 © 2024 The Apache Software Foundation. All rights reserved.