Package dev.vortex.api
Enum Class ScanOptions.SelectionMode
- All Implemented Interfaces:
Serializable,Comparable<ScanOptions.SelectionMode>,Constable
- Enclosing interface:
- ScanOptions
How to interpret the row selection payload.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReturn rows except those at the indices.Return rows except those in the Roaring bitmap.Return only rows at the indices.Ignore row selection payloads.Return only rows in the Roaring bitmap. -
Method Summary
Modifier and TypeMethodDescriptionbytecode()static ScanOptions.SelectionModeReturns the enum constant of this class with the specified name.static ScanOptions.SelectionMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INCLUDE_ALL
Ignore row selection payloads. -
INCLUDE
Return only rows at the indices. -
EXCLUDE
Return rows except those at the indices. -
INCLUDE_ROARING
Return only rows in the Roaring bitmap. -
EXCLUDE_ROARING
Return rows except those in the Roaring bitmap.
-
-
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
-
code
public byte code()
-