public enum FlowReturn extends java.lang.Enum<FlowReturn> implements IntegerEnum
Enum Constant and Description |
---|
__UNKNOWN_NATIVE_VALUE
The default enum value used when no other value matches the native value
|
ERROR
Some (fatal) error occured.
|
NOT_LINKED
Pad is not linked. |
NOT_NEGOTIATED
Pad is in not negotiated. |
NOT_SUPPORTED
This operation is not supported.
|
OK
Data passing was ok.
|
RESEND
Resend buffer, possibly with new caps (not send yet).
|
UNEXPECTED
Did not expect anything, like after EOS.
|
WRONG_STATE
Pad is in wrong state. |
Modifier and Type | Method and Description |
---|---|
int |
intValue()
Gets the integer value of the enum.
|
static FlowReturn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlowReturn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowReturn RESEND
public static final FlowReturn OK
public static final FlowReturn NOT_LINKED
Pad
is not linked.public static final FlowReturn WRONG_STATE
Pad
is in wrong state.public static final FlowReturn UNEXPECTED
public static final FlowReturn NOT_NEGOTIATED
Pad
is in not negotiated.public static final FlowReturn ERROR
public static final FlowReturn NOT_SUPPORTED
public static final FlowReturn __UNKNOWN_NATIVE_VALUE
public static FlowReturn[] values()
for (FlowReturn c : FlowReturn.values()) System.out.println(c);
public static FlowReturn 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 nullpublic int intValue()
intValue
in interface IntegerEnum