enum Flags extends Enum<Flags>
| Enum Constant and Description | 
|---|
CHANGED
Variable has just changed value. 
 | 
END
Variable becomes inactive. 
 | 
HAS_END_RULE
Variable has an end rule. 
 | 
HAS_START_RULE
Variable has a start rule. 
 | 
INITED
Variable must be initialized to 1 at start of control program. 
 | 
IS_DETECTOR
Variable is a detector. 
 | 
IS_OUTPUT
Variable is an output. 
 | 
IS_TIMER
Variable is a timer. 
 | 
START
Variable becomes active. 
 | 
TIMEREXPIRED
Timer has just expired. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Flags | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Flags[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Flags START
public static final Flags END
public static final Flags TIMEREXPIRED
public static final Flags CHANGED
public static final Flags IS_TIMER
public static final Flags IS_DETECTOR
public static final Flags HAS_START_RULE
public static final Flags HAS_END_RULE
public static final Flags IS_OUTPUT
public static final Flags INITED
public static Flags[] values()
for (Flags c : Flags.values()) System.out.println(c);
public static Flags 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.