|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RangeParameter.Scale>
de.jstacs.parameters.RangeParameter.Scale
public static enum RangeParameter.Scale
This enum
defines possible scales, if RangeParameter.RangeType
is
RangeParameter.RangeType.RANGE
.
Enum Constant Summary | |
---|---|
EXPSCALE
The range is sampled in an exponential scale. |
|
INVERSELOGSCALE
The range is sampled in an inverse (finer around the last value) logarithmic scale. |
|
INVERSELOGSCALE10
The range is sampled in an inverse (finer around the last value) logarithmic scale (radix=10). |
|
INVERSELOGSCALE2
The range is sampled in an inverse (finer around the last value) logarithmic scale (radix=2). |
|
LINSCALE
The range is sampled in a linear scale. |
|
LOGSCALE
The range is sampled in a logarithmic scale. |
|
LOGSCALE10
The range is sampled in a logarithmic scale (radix=10). |
|
LOGSCALE2
The range is sampled in a logarithmic scale (radix=10). |
Method Summary | |
---|---|
static RangeParameter.Scale |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RangeParameter.Scale[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RangeParameter.Scale LOGSCALE
public static final RangeParameter.Scale INVERSELOGSCALE
public static final RangeParameter.Scale LINSCALE
public static final RangeParameter.Scale EXPSCALE
public static final RangeParameter.Scale LOGSCALE2
public static final RangeParameter.Scale INVERSELOGSCALE2
public static final RangeParameter.Scale LOGSCALE10
public static final RangeParameter.Scale INVERSELOGSCALE10
Method Detail |
---|
public static RangeParameter.Scale[] values()
for (RangeParameter.Scale c : RangeParameter.Scale.values()) System.out.println(c);
public static RangeParameter.Scale valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |