Package dev.vortex.api
Enum Class ScanOptions.SelectionMode
- All Implemented Interfaces:
Serializable,Comparable<ScanOptions.SelectionMode>,Constable
- Enclosing interface:
- ScanOptions
How to interpret
ScanOptions.selectionIndices().-
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 only rows at the indices.IgnoreScanOptions.selectionIndices(). -
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
IgnoreScanOptions.selectionIndices(). -
INCLUDE
Return only rows at the indices. -
EXCLUDE
Return rows except those at the indices.
-
-
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()
-