public enum SqlOps extends Enum<SqlOps>
| Enum Constant and Description |
|---|
SqlOpDistinct |
SqlOpEmpty |
SqlOpExtend |
SqlOpFilter |
SqlOpGroupBy |
SqlOpJoin |
SqlOpOrder |
SqlOpProject |
SqlOpQuery |
SqlOpRename |
SqlOpSlice |
SqlOpTable |
SqlOpUnionN |
| Modifier and Type | Method and Description |
|---|---|
static SqlOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlOps SqlOpGroupBy
public static final SqlOps SqlOpOrder
public static final SqlOps SqlOpEmpty
public static final SqlOps SqlOpRename
public static final SqlOps SqlOpFilter
public static final SqlOps SqlOpTable
public static final SqlOps SqlOpQuery
public static final SqlOps SqlOpProject
public static final SqlOps SqlOpExtend
public static final SqlOps SqlOpJoin
public static final SqlOps SqlOpUnionN
public static final SqlOps SqlOpDistinct
public static final SqlOps SqlOpSlice
public static SqlOps[] values()
for (SqlOps c : SqlOps.values()) System.out.println(c);
public static SqlOps 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 © 2013. All Rights Reserved.