|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ClockReturn>
org.gstreamer.ClockReturn
public enum ClockReturn
The return value of a clock operation.
Enum Constant Summary | |
---|---|
BADTIME
A bad time was provided to a function. |
|
BUSY
The ClockID is busy |
|
EARLY
The operation was scheduled too late. |
|
ERROR
An error occured |
|
OK
The operation succeded. |
|
UNSCHEDULED
The clockID was unscheduled |
|
UNSUPPORTED
Operation is not supported |
Method Summary | |
---|---|
static ClockReturn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ClockReturn[] |
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 ClockReturn OK
public static final ClockReturn EARLY
public static final ClockReturn UNSCHEDULED
public static final ClockReturn BUSY
public static final ClockReturn BADTIME
public static final ClockReturn ERROR
public static final ClockReturn UNSUPPORTED
Method Detail |
---|
public static ClockReturn[] values()
for (ClockReturn c : ClockReturn.values()) System.out.println(c);
public static ClockReturn 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |