public enum TransportSubType extends Enum<TransportSubType>
| Enum Constant and Description |
|---|
BRIGHTCOVE |
HTTP |
ITUNES |
RTSP |
| Modifier and Type | Method and Description |
|---|---|
static TransportSubType |
fromString(String s) |
String |
toString() |
static TransportSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransportSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransportSubType HTTP
public static final TransportSubType RTSP
public static final TransportSubType ITUNES
public static final TransportSubType BRIGHTCOVE
public static TransportSubType[] values()
for (TransportSubType c : TransportSubType.values()) System.out.println(c);
public static TransportSubType 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 String toString()
toString in class Enum<TransportSubType>public static TransportSubType fromString(String s)
Copyright © 2014. All rights reserved.