Package com.wowza.wms.dvr
Enum IDvrConstants.DvrTimeScale
- Object
- 
- Enum<IDvrConstants.DvrTimeScale>
- 
- com.wowza.wms.dvr.IDvrConstants.DvrTimeScale
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- Comparable<IDvrConstants.DvrTimeScale>
 - Enclosing interface:
- IDvrConstants
 
 public static enum IDvrConstants.DvrTimeScale extends Enum<IDvrConstants.DvrTimeScale> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DVR_TIMEPACKET_TIMEUTC_TIME
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IDvrConstants.DvrTimeScalevalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
DVR_TIMEpublic static final IDvrConstants.DvrTimeScale DVR_TIME 
 - 
PACKET_TIMEpublic static final IDvrConstants.DvrTimeScale PACKET_TIME 
 - 
UTC_TIMEpublic static final IDvrConstants.DvrTimeScale UTC_TIME 
 
- 
 - 
Method Detail- 
valuespublic static IDvrConstants.DvrTimeScale[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IDvrConstants.DvrTimeScale c : IDvrConstants.DvrTimeScale.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IDvrConstants.DvrTimeScale valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-