public enum Ops extends Enum<Ops>
| Enum Constant and Description |
|---|
OpDisjunction |
OpDistinct |
OpExtend |
OpFilter |
OpFilterIndexed |
OpGroup |
OpJoin |
OpLeftJoin |
OpMapping |
OpOrder |
OpProject |
OpQuadPattern |
OpQuadPattern2 |
OpSlice |
OpUnion |
OpViewInstanceJoin |
| Modifier and Type | Method and Description |
|---|---|
static Ops |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ops[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ops OpQuadPattern
public static final Ops OpQuadPattern2
public static final Ops OpFilter
public static final Ops OpFilterIndexed
public static final Ops OpUnion
public static final Ops OpDisjunction
public static final Ops OpOrder
public static final Ops OpLeftJoin
public static final Ops OpJoin
public static final Ops OpGroup
public static final Ops OpDistinct
public static final Ops OpProject
public static final Ops OpExtend
public static final Ops OpSlice
public static final Ops OpMapping
public static final Ops OpViewInstanceJoin
public static Ops[] values()
for (Ops c : Ops.values()) System.out.println(c);
public static Ops 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 © 2014. All rights reserved.