|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<URIType>
org.gstreamer.URIType
public enum URIType
The different types of URI direction.
Enum Constant Summary | |
---|---|
SINK
The URI is a consumer. |
|
SRC
The URI is a producer. |
|
UNKNOWN
The URI direction is unknown |
Method Summary | |
---|---|
int |
intValue()
Gets the integer value of the enum. |
static URIType |
valueOf(int uriType)
Returns the enum constant of this type with the specified integer value. |
static URIType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static URIType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final URIType UNKNOWN
public static final URIType SINK
public static final URIType SRC
Method Detail |
---|
public static URIType[] values()
for (URIType c : URIType.values()) System.out.println(c);
public static URIType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic int intValue()
intValue
in interface IntegerEnum
public static final URIType valueOf(int uriType)
uriType
- integer value.
java.lang.IllegalArgumentException
- if the enum type has no constant with the specified value.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |