enum MutableRelType extends Enum<MutableRelType>
MutableRel.| Enum Constant and Description |
|---|
AGGREGATE |
CALC |
COLLECT |
CORRELATE |
EXCHANGE |
FILTER |
HOLDER |
INTERSECT |
JOIN |
MINUS |
PROJECT |
SAMPLE |
SEMIJOIN |
SORT |
TABLE_FUNCTION_SCAN |
TABLE_MODIFY |
TABLE_SCAN |
UNCOLLECT |
UNION |
VALUES |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static MutableRelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutableRelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutableRelType AGGREGATE
public static final MutableRelType CALC
public static final MutableRelType COLLECT
public static final MutableRelType CORRELATE
public static final MutableRelType EXCHANGE
public static final MutableRelType FILTER
public static final MutableRelType INTERSECT
public static final MutableRelType JOIN
public static final MutableRelType MINUS
public static final MutableRelType PROJECT
public static final MutableRelType SAMPLE
public static final MutableRelType SEMIJOIN
public static final MutableRelType SORT
public static final MutableRelType TABLE_FUNCTION_SCAN
public static final MutableRelType TABLE_MODIFY
public static final MutableRelType TABLE_SCAN
public static final MutableRelType UNCOLLECT
public static final MutableRelType UNION
public static final MutableRelType VALUES
public static final MutableRelType WINDOW
public static final MutableRelType HOLDER
public static MutableRelType[] values()
for (MutableRelType c : MutableRelType.values()) System.out.println(c);
public static MutableRelType 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 © 2012–2018 The Apache Software Foundation. All rights reserved.