public enum FifoSupport extends Enum<FifoSupport>
| Enum Constant and Description | 
|---|
ALL
FIFO operations are supported for this class. 
 | 
DEFAULT
FIFO support will be inherited from the superclass. 
 | 
NOT_SET
Deprecated. 
 
Since 8.0.1 - Use DEFAULT instead. 
 | 
OFF
FIFO operations are not supported for this class. 
 | 
OPERATION
FIFO operations are supported for this class. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static FifoSupport | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FifoSupport[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
@Deprecated public static final FifoSupport NOT_SET
public static final FifoSupport DEFAULT
public static final FifoSupport OFF
public static final FifoSupport OPERATION
ReadModifiers.FIFO
 to perform a FIFO operation.public static final FifoSupport ALL
public static FifoSupport[] values()
for (FifoSupport c : FifoSupport.values()) System.out.println(c);
public static FifoSupport 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 © GigaSpaces.