public enum PadProbeReturn extends Enum<PadProbeReturn>
| Enum Constant and Description |
|---|
DROP
Drop data in data probes.
|
HANDLED
Data has been handled in the probe and will not be forwarded further.
|
OK
Normal probe return value.
|
PASS
Pass the data item in the block probe and block on the next item.
|
REMOVE
Remove the probe
|
| Modifier and Type | Method and Description |
|---|---|
static PadProbeReturn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PadProbeReturn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PadProbeReturn DROP
public static final PadProbeReturn OK
public static final PadProbeReturn REMOVE
public static final PadProbeReturn PASS
public static final PadProbeReturn HANDLED
public static PadProbeReturn[] values()
for (PadProbeReturn c : PadProbeReturn.values()) System.out.println(c);
public static PadProbeReturn 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 nullCopyright © 2021 gstreamer-java. All rights reserved.