public static enum CLP.SCALING extends java.lang.Enum<CLP.SCALING>
| Enum Constant and Description |
|---|
AUTO |
EQULIBRIUM |
GEOMETRIC |
OFF |
| Modifier and Type | Method and Description |
|---|---|
static CLP.SCALING |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CLP.SCALING[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLP.SCALING OFF
public static final CLP.SCALING EQULIBRIUM
public static final CLP.SCALING GEOMETRIC
public static final CLP.SCALING AUTO
public static CLP.SCALING[] values()
for (CLP.SCALING c : CLP.SCALING.values()) System.out.println(c);
public static CLP.SCALING 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