public enum Transform extends Enum<Transform>
| Enum Constant and Description |
|---|
CUMUL
Cumulative sum.
|
DIFF
Row-on-row change.
|
NONE
Leave data unchanged.
|
NORMALIZE
Start at 100.
|
RDIFF
Row-on-row % change.
|
| Modifier and Type | Method and Description |
|---|---|
static Transform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transform NONE
public static final Transform DIFF
public static final Transform RDIFF
public static final Transform CUMUL
public static final Transform NORMALIZE
public static Transform[] values()
for (Transform c : Transform.values()) System.out.println(c);
public static Transform 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 nullCopyright 2014-Present by Jim Moores
${javadoc.footer.license}