enum PrintFlags extends Enum<PrintFlags>
Enum Constant and Description |
---|
E
Print "1" if just reset, else print "0".
|
FLAGS
Print the flags of the Variable.
|
ID
The name and stream of the Variable.
|
INITTIMER
Print "I" before the name (to indicate that a timer is initialized).
|
MODIFY_TIME
Print the time of last modification of the Variable.
|
NEGATED
Print the negated Variable.
|
REINITTIMER
Print "RI" before the name (to indicate that a timer is re-initialized).
|
S
Print "1" if just set, else print "0".
|
VALUE
The current Variable.
|
Modifier and Type | Method and Description |
---|---|
static PrintFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrintFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintFlags ID
public static final PrintFlags VALUE
public static final PrintFlags INITTIMER
public static final PrintFlags REINITTIMER
public static final PrintFlags S
public static final PrintFlags E
public static final PrintFlags NEGATED
public static final PrintFlags FLAGS
public static final PrintFlags MODIFY_TIME
public static PrintFlags[] values()
for (PrintFlags c : PrintFlags.values()) System.out.println(c);
public static PrintFlags 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–2016 Delft University of Technology. All rights reserved.