@Internal public enum ManagedMemoryUseCase extends Enum<ManagedMemoryUseCase>
Modifier and Type | Class and Description |
---|---|
static class |
ManagedMemoryUseCase.Scope
Scope at which memory is managed for a use case.
|
Enum Constant and Description |
---|
OPERATOR
Currently, weights are defined as mebibyte values.
|
PYTHON |
STATE_BACKEND |
Modifier and Type | Field and Description |
---|---|
ManagedMemoryUseCase.Scope |
scope |
Modifier and Type | Method and Description |
---|---|
static ManagedMemoryUseCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedMemoryUseCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedMemoryUseCase OPERATOR
public static final ManagedMemoryUseCase STATE_BACKEND
public static final ManagedMemoryUseCase PYTHON
public final ManagedMemoryUseCase.Scope scope
public static ManagedMemoryUseCase[] values()
for (ManagedMemoryUseCase c : ManagedMemoryUseCase.values()) System.out.println(c);
public static ManagedMemoryUseCase 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 © 2014–2024 The Apache Software Foundation. All rights reserved.