@Namespace(value="arrow::json") public static enum arrow.UnexpectedFieldBehavior extends Enum<arrow.UnexpectedFieldBehavior>
| Enum Constant and Description |
|---|
Error
Unexpected JSON fields error out
|
Ignore
Unexpected JSON fields are ignored
|
InferType
Unexpected JSON fields are type-inferred and included in the output
|
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
arrow.UnexpectedFieldBehavior |
intern() |
String |
toString() |
static arrow.UnexpectedFieldBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static arrow.UnexpectedFieldBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final arrow.UnexpectedFieldBehavior Ignore
public static final arrow.UnexpectedFieldBehavior Error
public static final arrow.UnexpectedFieldBehavior InferType
public static arrow.UnexpectedFieldBehavior[] values()
for (arrow.UnexpectedFieldBehavior c : arrow.UnexpectedFieldBehavior.values()) System.out.println(c);
public static arrow.UnexpectedFieldBehavior 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.UnexpectedFieldBehavior intern()
public String toString()
toString in class Enum<arrow.UnexpectedFieldBehavior>Copyright © 2021. All rights reserved.