public enum SamplingType extends java.lang.Enum<SamplingType>
| Enum Constant and Description |
|---|
LINEAR
For state trajectories that are piecewise linear.
|
TALLY
For statistics that are collected one at a time, independent of time.
|
TIME_VARYING
For statistics that represent values that vary over time according yo
admissible DES state trajectory rules (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static SamplingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SamplingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplingType TALLY
public static final SamplingType TIME_VARYING
public static final SamplingType LINEAR
public static SamplingType[] values()
for (SamplingType c : SamplingType.values()) System.out.println(c);
public static SamplingType 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