public static enum IDvrConstants.DvrTimeScale extends Enum<IDvrConstants.DvrTimeScale>
| Enum Constant | Description |
|---|---|
DVR_TIME |
|
PACKET_TIME |
|
UTC_TIME |
| Modifier and Type | Method | Description |
|---|---|---|
static IDvrConstants.DvrTimeScale |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static IDvrConstants.DvrTimeScale[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDvrConstants.DvrTimeScale DVR_TIME
public static final IDvrConstants.DvrTimeScale PACKET_TIME
public static final IDvrConstants.DvrTimeScale UTC_TIME
public static IDvrConstants.DvrTimeScale 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 static IDvrConstants.DvrTimeScale[] values()
for (IDvrConstants.DvrTimeScale c : IDvrConstants.DvrTimeScale.values()) System.out.println(c);