public enum Cumulation extends Enum<Cumulation>
Enum Constant and Description |
---|
FORWARD
Cumulative in increasing coordinate direction.
|
NONE
Not cumulative.
|
REVERSE
Cumulative in decreasing coordinate direction.
|
Modifier and Type | Method and Description |
---|---|
String |
getTextDescription()
Returns a plain-text description of the meaning of this mode.
|
boolean |
isCumulative()
Indicates whether this mode is cumulative.
|
boolean |
isReverse()
Indicates whether any cumulativeness is in the positive coordinate
direction.
|
static Cumulation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cumulation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cumulation NONE
public static final Cumulation FORWARD
public static final Cumulation REVERSE
public static Cumulation[] values()
for (Cumulation c : Cumulation.values()) System.out.println(c);
public static Cumulation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isCumulative()
public boolean isReverse()
public String getTextDescription()
Copyright © 2024 Central Laboratory of the Research Councils. All Rights Reserved.