public static enum ControlSystemChannelStatus.State extends Enum<ControlSystemChannelStatus.State>
| Enum Constant and Description | 
|---|
CONNECTED
The channel is connected. 
 | 
DISABLED
Archiving has been temporarily disabled. 
 | 
DISCONNECTED
The channel is disconnected. 
 | 
ERROR
The channel is a permanent error state. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ControlSystemChannelStatus.State | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ControlSystemChannelStatus.State[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ControlSystemChannelStatus.State CONNECTED
public static final ControlSystemChannelStatus.State DISABLED
public static final ControlSystemChannelStatus.State DISCONNECTED
public static final ControlSystemChannelStatus.State ERROR
public static ControlSystemChannelStatus.State[] values()
for (ControlSystemChannelStatus.State c : ControlSystemChannelStatus.State.values()) System.out.println(c);
public static ControlSystemChannelStatus.State 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 © 2011–2016 aquenos GmbH. All rights reserved.