|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<CaptureDevice.TimestampResolution>
org.jnetstream.capture.CaptureDevice.TimestampResolution
public static enum CaptureDevice.TimestampResolution
Specified the maximum supported timestamp resolution of the capture device. Since all timestamps are always recorded with NanoSecond precision even when the capturing device is only capable of MicroSecond precision, this constant provides the actual capability of the device, regardless of the precision recorded.
| Enum Constant Summary | |
|---|---|
MicroSecond
Timestamp has microsecond resolution |
|
MilliSecond
Timestamp has milli second resolution |
|
NanoSecond
Timestamp has nanosecond resolution |
|
| Method Summary | |
|---|---|
static CaptureDevice.TimestampResolution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CaptureDevice.TimestampResolution[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CaptureDevice.TimestampResolution MicroSecond
public static final CaptureDevice.TimestampResolution MilliSecond
public static final CaptureDevice.TimestampResolution NanoSecond
| Method Detail |
|---|
public static final CaptureDevice.TimestampResolution[] values()
for(CaptureDevice.TimestampResolution c : CaptureDevice.TimestampResolution.values())
System.out.println(c);
public static CaptureDevice.TimestampResolution 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
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||