public enum CompilationComponent extends Enum<CompilationComponent>
Enum Constant and Description |
---|
FILTER |
FROM |
GROUPING |
HAVING |
ORDERING |
RESULT |
UPDATE |
Modifier and Type | Method and Description |
---|---|
static CompilationComponent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilationComponent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilationComponent RESULT
public static final CompilationComponent FROM
public static final CompilationComponent FILTER
public static final CompilationComponent GROUPING
public static final CompilationComponent HAVING
public static final CompilationComponent ORDERING
public static final CompilationComponent UPDATE
public static CompilationComponent[] values()
for (CompilationComponent c : CompilationComponent.values()) System.out.println(c);
public static CompilationComponent 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 © 2019. All rights reserved.