Package com.kaltura.client.enums
Enum DistributionProviderType
- java.lang.Object
-
- java.lang.Enum<DistributionProviderType>
-
- com.kaltura.client.enums.DistributionProviderType
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<DistributionProviderType>
public enum DistributionProviderType extends Enum<DistributionProviderType> implements EnumAsString
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVNCOMCAST_MRSSCROSS_KALTURADAILYMOTIONDOUBLECLICKFACEBOOKFREEWHEELFREEWHEEL_GENERICFTPFTP_SCHEDULEDGENERICHULUIDETICMETRO_PCSMSNPODCASTQUICKPLAYSYNDICATIONUNICORNYAHOOYOUTUBEYOUTUBE_API
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DistributionProviderTypeget(String value)StringgetValue()voidsetValue(String value)static DistributionProviderTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DistributionProviderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVN
public static final DistributionProviderType AVN
-
COMCAST_MRSS
public static final DistributionProviderType COMCAST_MRSS
-
CROSS_KALTURA
public static final DistributionProviderType CROSS_KALTURA
-
DAILYMOTION
public static final DistributionProviderType DAILYMOTION
-
DOUBLECLICK
public static final DistributionProviderType DOUBLECLICK
-
FACEBOOK
public static final DistributionProviderType FACEBOOK
-
FREEWHEEL
public static final DistributionProviderType FREEWHEEL
-
FREEWHEEL_GENERIC
public static final DistributionProviderType FREEWHEEL_GENERIC
-
FTP
public static final DistributionProviderType FTP
-
FTP_SCHEDULED
public static final DistributionProviderType FTP_SCHEDULED
-
HULU
public static final DistributionProviderType HULU
-
IDETIC
public static final DistributionProviderType IDETIC
-
METRO_PCS
public static final DistributionProviderType METRO_PCS
-
MSN
public static final DistributionProviderType MSN
-
PODCAST
public static final DistributionProviderType PODCAST
-
QUICKPLAY
public static final DistributionProviderType QUICKPLAY
-
UNICORN
public static final DistributionProviderType UNICORN
-
YAHOO
public static final DistributionProviderType YAHOO
-
YOUTUBE
public static final DistributionProviderType YOUTUBE
-
YOUTUBE_API
public static final DistributionProviderType YOUTUBE_API
-
GENERIC
public static final DistributionProviderType GENERIC
-
SYNDICATION
public static final DistributionProviderType SYNDICATION
-
-
Method Detail
-
values
public static DistributionProviderType[] 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 (DistributionProviderType c : DistributionProviderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DistributionProviderType 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
-
getValue
public String getValue()
- Specified by:
getValuein interfaceEnumAsString
-
setValue
public void setValue(String value)
-
get
public static DistributionProviderType get(String value)
-
-