public static enum TPipeOperator.EPipeOperatorType extends Enum<TPipeOperator.EPipeOperatorType>
| Enum Constant and Description |
|---|
AGGREGATE |
AS |
DROP |
EXCEPT |
EXTEND |
INTERSECT |
JOIN |
LIMIT |
ORDER_BY |
PIVOT |
SELECT |
SET |
TABLESAMPLE |
UNION |
UNPIVOT |
WHERE |
| Modifier and Type | Method and Description |
|---|---|
static TPipeOperator.EPipeOperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPipeOperator.EPipeOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPipeOperator.EPipeOperatorType SELECT
public static final TPipeOperator.EPipeOperatorType WHERE
public static final TPipeOperator.EPipeOperatorType ORDER_BY
public static final TPipeOperator.EPipeOperatorType LIMIT
public static final TPipeOperator.EPipeOperatorType AGGREGATE
public static final TPipeOperator.EPipeOperatorType EXTEND
public static final TPipeOperator.EPipeOperatorType SET
public static final TPipeOperator.EPipeOperatorType DROP
public static final TPipeOperator.EPipeOperatorType AS
public static final TPipeOperator.EPipeOperatorType JOIN
public static final TPipeOperator.EPipeOperatorType UNION
public static final TPipeOperator.EPipeOperatorType INTERSECT
public static final TPipeOperator.EPipeOperatorType EXCEPT
public static final TPipeOperator.EPipeOperatorType TABLESAMPLE
public static final TPipeOperator.EPipeOperatorType PIVOT
public static final TPipeOperator.EPipeOperatorType UNPIVOT
public static TPipeOperator.EPipeOperatorType[] values()
for (TPipeOperator.EPipeOperatorType c : TPipeOperator.EPipeOperatorType.values()) System.out.println(c);
public static TPipeOperator.EPipeOperatorType 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 null