public enum FlowReturn extends Enum<FlowReturn> implements NativeEnum<FlowReturn>
See upstream documentation at https://gstreamer.freedesktop.org/data/doc/gstreamer/stable/gstreamer/html/GstPad.html#GstFlowReturn
| Enum Constant and Description |
|---|
EOS
Did not expect anything, like after EOS.
|
ERROR
Some (fatal) error occured.
|
FLUSHING
Pad is in wrong state. |
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.
|
| Modifier and Type | Method and Description |
|---|---|
int |
intValue()
Gets the integer value of the enum.
|
static FlowReturn |
valueOf(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.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromInt, fromIntpublic static final FlowReturn OK
public static final FlowReturn NOT_LINKED
Pad is not linked.public static final FlowReturn FLUSHING
Pad is in wrong state.public static final FlowReturn EOS
public static final FlowReturn NOT_NEGOTIATED
Pad is in not negotiated.public static final FlowReturn ERROR
public static final FlowReturn NOT_SUPPORTED
public static FlowReturn[] values()
for (FlowReturn c : FlowReturn.values()) System.out.println(c);
public static FlowReturn 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 int intValue()
intValue in interface NativeEnum<FlowReturn>Copyright © 2021 gstreamer-java. All rights reserved.