public enum FCOEComState extends java.lang.Enum<FCOEComState>
Enum Constant and Description |
---|
CHECKSUMERROR
Communication is disconnected.
|
CONNECTED
Communication is connected.
|
CONNECTING
Communication is connecting.
|
DISCONNECTED
Communication is disconnected.
|
FAILED
Communication connection failed.
|
FRAGMENTED
Packet must be fragmented due to max buffer size
|
FRAMEDATAERROR
A data error occured in the frame answer
|
FRAMEIDERROR
Frame ID of the answer is not the one expected
|
FRAMESIZEERROR
The size of the answer packet is not the one expected
|
LOST
Communication connection lost.
|
NOTREADY
Communication connection is not ready.
|
OVERSIZED
Packet size was too long
|
PERIODTOOSHORT
Communication real period.
|
TIMEOUT
Communication is disconnected.
|
UNKNOWNERROR
Unknown error
|
Modifier and Type | Method and Description |
---|---|
static FCOEComState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FCOEComState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FCOEComState CONNECTING
Communication is connecting.
public static final FCOEComState CONNECTED
Communication is connected.
public static final FCOEComState FAILED
Communication connection failed.
public static final FCOEComState LOST
Communication connection lost.
public static final FCOEComState NOTREADY
Communication connection is not ready.
public static final FCOEComState DISCONNECTED
Communication is disconnected.
public static final FCOEComState CHECKSUMERROR
Communication is disconnected.
public static final FCOEComState OVERSIZED
Packet size was too long
public static final FCOEComState FRAMEIDERROR
Frame ID of the answer is not the one expected
public static final FCOEComState FRAMESIZEERROR
The size of the answer packet is not the one expected
public static final FCOEComState FRAMEDATAERROR
A data error occured in the frame answer
public static final FCOEComState TIMEOUT
Communication is disconnected.
public static final FCOEComState PERIODTOOSHORT
Communication real period.
public static final FCOEComState FRAGMENTED
Packet must be fragmented due to max buffer size
public static final FCOEComState UNKNOWNERROR
public static FCOEComState[] values()
for (FCOEComState c : FCOEComState.values()) System.out.println(c);
public static FCOEComState 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