public static enum InputType.Kind extends Enum<InputType.Kind>
| Enum Constant and Description |
|---|
ANY_TYPE
\brief Accept any value type.
|
EXACT_TYPE
\brief A fixed arrow::DataType and will only exact match having this
exact type (e.g.
|
USE_TYPE_MATCHER
\brief Uses a TypeMatcher implementation to check the type.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
InputType.Kind |
intern() |
String |
toString() |
static InputType.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputType.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputType.Kind ANY_TYPE
public static final InputType.Kind EXACT_TYPE
public static final InputType.Kind USE_TYPE_MATCHER
public static InputType.Kind[] values()
for (InputType.Kind c : InputType.Kind.values()) System.out.println(c);
public static InputType.Kind 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 InputType.Kind intern()
public String toString()
toString in class Enum<InputType.Kind>Copyright © 2021. All rights reserved.