@Deprecated public enum Relationship extends Enum<Relationship>
LinearConstraint.| Enum Constant and Description | 
|---|
| EQDeprecated.  Equality relationship. | 
| GEQDeprecated.  Greater than or equal relationship. | 
| LEQDeprecated.  Lesser than or equal relationship. | 
| Modifier and Type | Method and Description | 
|---|---|
| Relationship | oppositeRelationship()Deprecated.  Get the relationship obtained when multiplying all coefficients by -1. | 
| String | toString()Deprecated.  | 
| static Relationship | valueOf(String name)Deprecated.  Returns the enum constant of this type with the specified name. | 
| static Relationship[] | values()Deprecated.  Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Relationship EQ
public static final Relationship LEQ
public static final Relationship GEQ
public static Relationship[] values()
for (Relationship c : Relationship.values()) System.out.println(c);
public static Relationship 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 nullpublic String toString()
toString in class Enum<Relationship>public Relationship oppositeRelationship()
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.