public enum Ops extends Enum<Ops>
| Enum Constant and Description |
|---|
OpDistinct |
OpFilter |
OpJoin |
OpProject |
OpQuadFilterPattern |
OpQuadPattern |
OpUnion |
| 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 OpQuadFilterPattern
public static final Ops OpQuadPattern
public static final Ops OpFilter
public static final Ops OpDistinct
public static final Ops OpProject
public static final Ops OpUnion
public static final Ops OpJoin
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 © 2015. All rights reserved.