public enum ECodeFlowModFailed extends Enum<ECodeFlowModFailed> implements ErrorCode
ErrorType.FLOW_MOD_FAILED error type.| Enum Constant and Description |
|---|
BAD_COMMAND
Unsupported or unknown command; Since 1.0.
|
BAD_FLAGS
Unsupported or unknown flags; Since 1.2.
|
BAD_TABLE_ID
Table does not exist; Since 1.1.
|
BAD_TIMEOUT
Flow was not added because of unsupported idle or hard timeout;
Since 1.0.
|
EPERM
Permissions error; Since 1.0.
|
OVERLAP
Attempted to add overlapping flow with Check-Overlap flag set;
Since 1.0.
|
TABLE_FULL
Flow not added because table was full; Since 1.0.
|
UNKNOWN
Unspecified error; Since 1.1.
|
UNSUPPORTED_ACTION_LIST
Unsupported action list; Since 1.0; Removed at 1.1.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode(ProtocolVersion pv)
Returns the code for the constant, under the given protocol
version.
|
ErrorType |
parentType()
Returns the parent error type for this error code.
|
static void |
validate(ECodeFlowModFailed code,
ProtocolVersion pv)
Validates the given error code against the specified protocol version,
silently returning if all is well, throwing an exception otherwise.
|
static ECodeFlowModFailed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECodeFlowModFailed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECodeFlowModFailed UNKNOWN
public static final ECodeFlowModFailed TABLE_FULL
public static final ECodeFlowModFailed BAD_TABLE_ID
public static final ECodeFlowModFailed OVERLAP
public static final ECodeFlowModFailed EPERM
public static final ECodeFlowModFailed BAD_TIMEOUT
public static final ECodeFlowModFailed UNSUPPORTED_ACTION_LIST
public static final ECodeFlowModFailed BAD_COMMAND
public static final ECodeFlowModFailed BAD_FLAGS
public static ECodeFlowModFailed[] values()
for (ECodeFlowModFailed c : ECodeFlowModFailed.values()) System.out.println(c);
public static ECodeFlowModFailed 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 nullpublic ErrorType parentType()
ErrorCodeparentType in interface ErrorCodepublic int getCode(ProtocolVersion pv)
OfpCodeBasedEnumgetCode in interface OfpCodeBasedEnumpv - the protocol versionpublic static void validate(ECodeFlowModFailed code, ProtocolVersion pv)
code - the codepv - the protocol versionVersionMismatchException - if the code is not defined in the
given protocol versionCopyright © 2014. All Rights Reserved.