public enum MiniObjectFlags extends Enum<MiniObjectFlags> implements NativeFlags<MiniObjectFlags>
MiniObject
Enum Constant and Description |
---|
LAST
The last valid MiniObject flag
|
LOCK_READONLY
the object is permanently locked in READONLY mode.
|
LOCKABLE
the object can be locked and unlocked with gst_mini_object_lock() and
gst_mini_object_unlock()
|
MAY_BE_LEAKED
the object is expected to stay alive even after gst_deinit() has been
called and so should be ignored by leak detection tools.
|
Modifier and Type | Method and Description |
---|---|
int |
intValue() |
static MiniObjectFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MiniObjectFlags[] |
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, valueOf
fromInt, toInt
fromInt
public static final MiniObjectFlags LOCKABLE
public static final MiniObjectFlags LOCK_READONLY
public static final MiniObjectFlags MAY_BE_LEAKED
public static final MiniObjectFlags LAST
public static MiniObjectFlags[] values()
for (MiniObjectFlags c : MiniObjectFlags.values()) System.out.println(c);
public static MiniObjectFlags 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<MiniObjectFlags>
Copyright © 2019 gstreamer-java. All rights reserved.