public enum OdpsType extends Enum<OdpsType>
| Enum Constant and Description |
|---|
BIGINT |
BOOLEAN |
DATETIME |
DECIMAL |
DOUBLE |
IGNORE
Deprecated.
|
STRING |
| Modifier and Type | Method and Description |
|---|---|
static OdpsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OdpsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OdpsType STRING
public static final OdpsType BIGINT
public static final OdpsType DOUBLE
public static final OdpsType BOOLEAN
public static final OdpsType DATETIME
public static final OdpsType DECIMAL
@Deprecated public static final OdpsType IGNORE
public static OdpsType[] values()
for (OdpsType c : OdpsType.values()) System.out.println(c);
public static OdpsType 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 © 2021 Alibaba Cloud Computing. All rights reserved.