@Deprecated public enum Relationship extends java.lang.Enum<Relationship>
LinearConstraint
.Enum Constant and Description |
---|
EQ
Deprecated.
Equality relationship.
|
GEQ
Deprecated.
Greater than or equal relationship.
|
LEQ
Deprecated.
Lesser than or equal relationship.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
stringValue
Deprecated.
Display string for the relationship.
|
Modifier and Type | Method and Description |
---|---|
Relationship |
oppositeRelationship()
Deprecated.
Get the relationship obtained when multiplying all coefficients by -1.
|
java.lang.String |
toString()
Deprecated.
|
static Relationship |
valueOf(java.lang.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
private final java.lang.String stringValue
public static Relationship[] values()
for (Relationship c : Relationship.values()) System.out.println(c);
public static Relationship 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Relationship>
public Relationship oppositeRelationship()
Copyright (c) 2003-2014 Apache Software Foundation