Package com.gigaspaces.annotation.pojo
Enum Class FifoSupport
- All Implemented Interfaces:
Serializable,Comparable<FifoSupport>,java.lang.constant.Constable
Determines FIFO operations support.
- Since:
- 7.0
- Author:
- Niv Ingberg
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFIFO operations are supported for this class.FIFO support will be inherited from the superclass.Deprecated.Since 8.0.1 - Use DEFAULT instead.FIFO operations are not supported for this class.FIFO operations are supported for this class. -
Method Summary
Modifier and TypeMethodDescriptionstatic FifoSupportReturns the enum constant of this class with the specified name.static FifoSupport[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_SET
Deprecated.Since 8.0.1 - Use DEFAULT instead. -
DEFAULT
FIFO support will be inherited from the superclass. If superclass doesn't have FIFO settings, FifoSupport will be set to OFF.- Since:
- 8.0.1
-
OFF
FIFO operations are not supported for this class. -
OPERATION
FIFO operations are supported for this class. UseReadModifiers.FIFOto perform a FIFO operation. -
ALL
FIFO operations are supported for this class. All operations involving this class are FIFO.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-