public enum QOSType extends Enum<QOSType> implements NativeEnum<QOSType>
| Enum Constant and Description |
|---|
OVERFLOW
The QoS event type that is produced when downstream elements are
producing data too quickly and the element can't keep up processing the
data.
|
THROTTLE
The QoS event type that is produced when the application enabled
throttling to limit the datarate.
|
UNDERFLOW
The QoS event type that is produced when downstream elements are
producing data too slowly and need to speed up their processing rate.
|
| Modifier and Type | Method and Description |
|---|---|
int |
intValue() |
static QOSType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QOSType[] |
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 QOSType OVERFLOW
public static final QOSType UNDERFLOW
public static final QOSType THROTTLE
public static QOSType[] values()
for (QOSType c : QOSType.values()) System.out.println(c);
public static QOSType 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<QOSType>Copyright © 2021 gstreamer-java. All rights reserved.