public static enum VectorExpression.Type extends Enum<VectorExpression.Type>
Enum Constant and Description |
---|
CHAR |
DATE |
DECIMAL |
DOUBLE |
INTERVAL_DAY_TIME |
INTERVAL_YEAR_MONTH |
LONG |
OTHER |
STRING |
TIMESTAMP |
VARCHAR |
Modifier and Type | Method and Description |
---|---|
static VectorExpression.Type |
getValue(String name) |
static VectorExpression.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorExpression.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorExpression.Type STRING
public static final VectorExpression.Type CHAR
public static final VectorExpression.Type VARCHAR
public static final VectorExpression.Type TIMESTAMP
public static final VectorExpression.Type DATE
public static final VectorExpression.Type LONG
public static final VectorExpression.Type DOUBLE
public static final VectorExpression.Type DECIMAL
public static final VectorExpression.Type INTERVAL_YEAR_MONTH
public static final VectorExpression.Type INTERVAL_DAY_TIME
public static final VectorExpression.Type OTHER
public static VectorExpression.Type[] values()
for (VectorExpression.Type c : VectorExpression.Type.values()) System.out.println(c);
public static VectorExpression.Type 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 static VectorExpression.Type getValue(String name)
Copyright © 2017 The Apache Software Foundation. All rights reserved.