|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SequenceView.Zero>
edu.mines.jtk.mosaic.SequenceView.Zero
public static enum SequenceView.Zero
The visibility of function value zero in the view. To understand these options, define fmin and fmax to be the minimum and maximum function values, respectively. Then, ...
If NORMAL, the values fmax and fmin correspond to the top and bottom of the view, respectively. Depending on those values, the function value zero may or may not be displayed.
If ALWAYS, the function value zero will always be displayed. If fmin <= 0 <= fmax, then this options behaves like NORMAL. If 0 < fmin, then value zero corresponds to the bottom of the view. If fmax < 0, then value zero corresponds to the top of the view. This option is the default.
If MIDDLE, the function value zero corresponds to the middle of the the view, halfway between the top and bottom. The function values ftop and -ftop correspond to the top and bottom of the view, respectively, where ftop is the maximum of the absolute values of fmin and fmax.
| Enum Constant Summary | |
|---|---|
ALWAYS
|
|
MIDDLE
|
|
NORMAL
|
|
| Method Summary | |
|---|---|
static SequenceView.Zero |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SequenceView.Zero[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SequenceView.Zero NORMAL
public static final SequenceView.Zero ALWAYS
public static final SequenceView.Zero MIDDLE
| Method Detail |
|---|
public static final SequenceView.Zero[] values()
for(SequenceView.Zero c : SequenceView.Zero.values())
System.out.println(c);
public static SequenceView.Zero 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||