@PublicEvolving public enum InputGroup extends Enum<InputGroup>
DataTypeHints.
This list exposes a combination of LogicalTypeFamily and InputTypeStrategies
via annotations for convenient inline usage.
| Enum Constant and Description |
|---|
ANY
Enables input wildcards.
|
UNKNOWN
Default if no group is specified.
|
| Modifier and Type | Method and Description |
|---|---|
static InputGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputGroup UNKNOWN
public static final InputGroup ANY
InputTypeStrategies.ANY.
Note: The class of the annotated element must be Object as this is the super class
of all possibly passed data types.
public static InputGroup[] values()
for (InputGroup c : InputGroup.values()) System.out.println(c);
public static InputGroup 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 nullCopyright © 2014–2024 The Apache Software Foundation. All rights reserved.