public enum BusSyncReply extends Enum<BusSyncReply> implements NativeEnum<BusSyncReply>
| Enum Constant and Description |
|---|
ASYNC
Pass
Message to async queue, continue if message is handled |
DROP
Drop the
Message |
PASS
Pass the
Message to the async queue |
| Modifier and Type | Method and Description |
|---|---|
int |
intValue()
Gets the integer value of the enum.
|
static BusSyncReply |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusSyncReply[] |
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 BusSyncReply DROP
Messagepublic static final BusSyncReply PASS
Message to the async queuepublic static final BusSyncReply ASYNC
Message to async queue, continue if message is handledpublic static BusSyncReply[] values()
for (BusSyncReply c : BusSyncReply.values()) System.out.println(c);
public static BusSyncReply 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<BusSyncReply>Copyright © 2021 gstreamer-java. All rights reserved.