public static enum CPO.BoundType extends java.lang.Enum<CPO.BoundType>
| Enum Constant and Description |
|---|
GREATESTLOWER
Represents the greatest lower bound.
|
LEASTUPPER
Represents the least upper bound.
|
| Modifier and Type | Method and Description |
|---|---|
static CPO.BoundType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CPO.BoundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CPO.BoundType GREATESTLOWER
public static final CPO.BoundType LEASTUPPER
public static CPO.BoundType[] values()
for (CPO.BoundType c : CPO.BoundType.values()) System.out.println(c);
public static CPO.BoundType 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 null