public enum ExtendedType extends Enum<ExtendedType>
Enum Constant and Description |
---|
BINARY |
DATE |
DECIMAL |
INTEGER |
INTERVAL |
TIME |
TIMESTAMP |
TYPE |
Modifier and Type | Field and Description |
---|---|
com.fasterxml.jackson.core.io.SerializedString |
serialized |
Modifier and Type | Method and Description |
---|---|
static ExtendedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedType BINARY
public static final ExtendedType TYPE
public static final ExtendedType DATE
public static final ExtendedType TIME
public static final ExtendedType TIMESTAMP
public static final ExtendedType INTERVAL
public static final ExtendedType INTEGER
public static final ExtendedType DECIMAL
public static ExtendedType[] values()
for (ExtendedType c : ExtendedType.values()) System.out.println(c);
public static ExtendedType 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 © 1970 The Apache Software Foundation. All rights reserved.