public enum BiasAcquisition extends Enum<BiasAcquisition>
Enum Constant and Description |
---|
NEVER
The bias is never acquired.
|
ON_READ
Bias is acquired when the entry is read
TODO: Not implemented yet
|
ON_WRITE
Bias is acquired by the writing entry.
|
Modifier and Type | Method and Description |
---|---|
static BiasAcquisition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BiasAcquisition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BiasAcquisition NEVER
public static final BiasAcquisition ON_WRITE
public static final BiasAcquisition ON_READ
public static BiasAcquisition[] values()
for (BiasAcquisition c : BiasAcquisition.values()) System.out.println(c);
public static BiasAcquisition 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 © 2021 JBoss by Red Hat. All rights reserved.