public enum Operator extends java.lang.Enum<Operator> implements java.util.function.BinaryOperator<java.lang.Number>
| Modifier and Type | Method and Description |
|---|---|
static Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator sum
public static final Operator minus
public static final Operator mult
public static final Operator div
public static final Operator min
public static final Operator max
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2013-2015 TinkerPop. All Rights Reserved.