Enum IMPEGDashConstants.UTCTiming
- Object
-
- Enum<IMPEGDashConstants.UTCTiming>
-
- com.wowza.wms.httpstreamer.mpegdashstreaming.util.IMPEGDashConstants.UTCTiming
-
- All Implemented Interfaces:
java.io.Serializable
,Comparable<IMPEGDashConstants.UTCTiming>
- Enclosing class:
- IMPEGDashConstants
public static enum IMPEGDashConstants.UTCTiming extends Enum<IMPEGDashConstants.UTCTiming>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IMPEGDashConstants.UTCTiming
fromString(String text)
String
toString()
static IMPEGDashConstants.UTCTiming
valueOf(String name)
Returns the enum constant of this type with the specified name.static IMPEGDashConstants.UTCTiming[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIRECT
public static final IMPEGDashConstants.UTCTiming DIRECT
-
HTTP_HEAD
public static final IMPEGDashConstants.UTCTiming HTTP_HEAD
-
NTP
public static final IMPEGDashConstants.UTCTiming NTP
-
SNTP
public static final IMPEGDashConstants.UTCTiming SNTP
-
HTTP_XSDATE
public static final IMPEGDashConstants.UTCTiming HTTP_XSDATE
-
HTTP_ISO
public static final IMPEGDashConstants.UTCTiming HTTP_ISO
-
HTTP_NTP
public static final IMPEGDashConstants.UTCTiming HTTP_NTP
-
UNKNOWN
public static final IMPEGDashConstants.UTCTiming UNKNOWN
-
-
Method Detail
-
values
public static IMPEGDashConstants.UTCTiming[] 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 (IMPEGDashConstants.UTCTiming c : IMPEGDashConstants.UTCTiming.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMPEGDashConstants.UTCTiming 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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<IMPEGDashConstants.UTCTiming>
-
fromString
public static IMPEGDashConstants.UTCTiming fromString(String text)
-
-