public enum ProjectionMode extends Enum<ProjectionMode>
| Enum Constant and Description |
|---|
AVG |
COUNT |
COUNT_DISTINCT |
GROUP |
GROUP_COUNT |
MAX |
MIN |
SUM |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
toMatchString(String pattern) |
static ProjectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectionMode COUNT
public static final ProjectionMode COUNT_DISTINCT
public static final ProjectionMode MAX
public static final ProjectionMode MIN
public static final ProjectionMode AVG
public static final ProjectionMode SUM
public static final ProjectionMode GROUP
public static final ProjectionMode GROUP_COUNT
public static ProjectionMode[] values()
for (ProjectionMode c : ProjectionMode.values()) System.out.println(c);
public static ProjectionMode 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 © 2016 jufeng. All rights reserved.