|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<VariableDelay.Type>
com.xj.anylogic.engine.VariableDelay.Type
public static enum VariableDelay.Type
Type of delay object, see description on items
| Enum Constant Summary | |
|---|---|
EXACT_DELAY
Delay returns the value of input at CurrentTime - DelayTime. |
|
INFORMATION_DELAY
Delay represents a channel of length DelayTime
with input and output. |
|
MATERIAL_DELAY
Delay represents a channel of length DelayTime
with input and output. |
|
| Method Summary | |
|---|---|
static VariableDelay.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static VariableDelay.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, 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 VariableDelay.Type EXACT_DELAY
CurrentTime - DelayTime.DelayTime increases, delay holds the last
returned value or returns MissingValue (if specified).
DelayTime ago
public static final VariableDelay.Type INFORMATION_DELAY
DelayTime
with input and output.
DelayTime increases,
the input part of channel is extended and instantly
filled by the last input value of delay.
DelayTime decreases,
the input part of required cutback of the channel is
trimmed, and samples contained in this part are discarded.
delayTime changes,
there is a period when output of the function is
not equal to its input received DelayTime ago
public static final VariableDelay.Type MATERIAL_DELAY
DelayTime
with input and output.
DelayTime increases,
the input part of channel is extended and instantly
filled with MissingValue-samples.
DelayTime decreases,
the input part of required cutback of the channel is
cut and taken from the channel, and samples contained in this
part and sequentially added to the next inputs.MissingValue-samples
in this "cut and taken" part, they aren't added to the inputs.
delayTime changes,
there is a period when output of the function is
not equal to its input received DelayTime ago
| Method Detail |
|---|
public static VariableDelay.Type[] values()
for (VariableDelay.Type c : VariableDelay.Type.values()) System.out.println(c);
public static VariableDelay.Type 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
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||