Package com.kaltura.client.enums
Enum SyndicationFeedType
- java.lang.Object
-
- java.lang.Enum<SyndicationFeedType>
-
- com.kaltura.client.enums.SyndicationFeedType
-
- All Implemented Interfaces:
EnumAsInt,Serializable,Comparable<SyndicationFeedType>
public enum SyndicationFeedType extends Enum<SyndicationFeedType> implements EnumAsInt
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 GOOGLE_VIDEOITUNESKALTURAKALTURA_XSLTOPERA_TV_SNAPROKU_DIRECT_PUBLISHERTUBE_MOGULYAHOO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SyndicationFeedTypeget(Integer value)intgetValue()voidsetValue(int value)static SyndicationFeedTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SyndicationFeedType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GOOGLE_VIDEO
public static final SyndicationFeedType GOOGLE_VIDEO
-
YAHOO
public static final SyndicationFeedType YAHOO
-
ITUNES
public static final SyndicationFeedType ITUNES
-
TUBE_MOGUL
public static final SyndicationFeedType TUBE_MOGUL
-
KALTURA
public static final SyndicationFeedType KALTURA
-
KALTURA_XSLT
public static final SyndicationFeedType KALTURA_XSLT
-
ROKU_DIRECT_PUBLISHER
public static final SyndicationFeedType ROKU_DIRECT_PUBLISHER
-
OPERA_TV_SNAP
public static final SyndicationFeedType OPERA_TV_SNAP
-
-
Method Detail
-
values
public static SyndicationFeedType[] 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 (SyndicationFeedType c : SyndicationFeedType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyndicationFeedType 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
-
setValue
public void setValue(int value)
-
get
public static SyndicationFeedType get(Integer value)
-
-