Enum Constant and Description |
---|
ARRAY_TYPE |
BIGINT_TYPE |
BINARY_TYPE |
BOOLEAN_TYPE |
DATE_TYPE |
DECIMAL_TYPE |
DOUBLE_TYPE |
FLOAT_TYPE |
INT_TYPE |
MAP_TYPE |
NULL_TYPE |
SMALLINT_TYPE |
STRING_TYPE |
STRUCT_TYPE |
TIMESTAMP_TYPE |
TINYINT_TYPE |
UNION_TYPE |
USER_DEFINED_TYPE |
VARCHAR_TYPE |
Modifier and Type | Method and Description |
---|---|
static TTypeId |
findByValue(int value)
Find a the enum type by its integer value, as defined in the Thrift IDL.
|
int |
getValue()
Get the integer value of this enum value, as defined in the Thrift IDL.
|
static TTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TTypeId BOOLEAN_TYPE
public static final TTypeId TINYINT_TYPE
public static final TTypeId SMALLINT_TYPE
public static final TTypeId INT_TYPE
public static final TTypeId BIGINT_TYPE
public static final TTypeId FLOAT_TYPE
public static final TTypeId DOUBLE_TYPE
public static final TTypeId STRING_TYPE
public static final TTypeId TIMESTAMP_TYPE
public static final TTypeId BINARY_TYPE
public static final TTypeId ARRAY_TYPE
public static final TTypeId MAP_TYPE
public static final TTypeId STRUCT_TYPE
public static final TTypeId UNION_TYPE
public static final TTypeId USER_DEFINED_TYPE
public static final TTypeId DECIMAL_TYPE
public static final TTypeId NULL_TYPE
public static final TTypeId DATE_TYPE
public static final TTypeId VARCHAR_TYPE
public static TTypeId[] values()
for (TTypeId c : TTypeId.values()) System.out.println(c);
public static TTypeId valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
getValue
in interface org.apache.thrift.TEnum
public static TTypeId findByValue(int value)
Copyright © 2012 The Apache Software Foundation