public static enum LinearConstraint.Operator extends Enum<LinearConstraint.Operator>
| Modifier and Type | Method and Description |
|---|---|
static LinearConstraint.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinearConstraint.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinearConstraint.Operator GEQ
public static final LinearConstraint.Operator EQ
public static final LinearConstraint.Operator LEQ
public static LinearConstraint.Operator[] values()
for (LinearConstraint.Operator c : LinearConstraint.Operator.values()) System.out.println(c);
public static LinearConstraint.Operator 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–2021 Sébastien Bigaret, Patrick Meyer. All rights reserved.