public enum SDPResult extends Enum<SDPResult> implements NativeEnum<SDPResult>
See upstream documentation at https://gstreamer.freedesktop.org/data/doc/gstreamer/stable/gst-plugins-base-libs/html/gst-plugins-base-libs-GstSDPMessage.html#GstSDPResult
SDPMessage| Enum Constant and Description |
|---|
EINVAL
A function to SDPMessage was given invalid parameters
|
OK
A successful return value
|
| Modifier and Type | Method and Description |
|---|---|
int |
intValue()
Gets the integer value of the enum
|
static SDPResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SDPResult[] |
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 SDPResult OK
public static final SDPResult EINVAL
public static SDPResult[] values()
for (SDPResult c : SDPResult.values()) System.out.println(c);
public static SDPResult 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<SDPResult>Copyright © 2021 gstreamer-java. All rights reserved.