@Namespace(value="arrow::compute") public static enum arrow.NullPlacement extends Enum<arrow.NullPlacement>
Enum Constant and Description |
---|
AtEnd
Place nulls and NaNs after any non-null values.
|
AtStart
Place nulls and NaNs before any non-null values.
|
Modifier and Type | Field and Description |
---|---|
int |
value |
Modifier and Type | Method and Description |
---|---|
arrow.NullPlacement |
intern() |
String |
toString() |
static arrow.NullPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static arrow.NullPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final arrow.NullPlacement AtStart
public static final arrow.NullPlacement AtEnd
public static arrow.NullPlacement[] values()
for (arrow.NullPlacement c : arrow.NullPlacement.values()) System.out.println(c);
public static arrow.NullPlacement 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 nullpublic arrow.NullPlacement intern()
public String toString()
toString
in class Enum<arrow.NullPlacement>
Copyright © 2022. All rights reserved.