|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FlowReturn>
org.gstreamer.FlowReturn
public enum FlowReturn
The result of passing data to a pad.
| Enum Constant Summary | |
|---|---|
__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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
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 name
java.lang.NullPointerException - if the argument is nullpublic int intValue()
intValue in interface IntegerEnum
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||