Package com.kaltura.client.enums
Enum LiveReportExportType
- java.lang.Object
-
- java.lang.Enum<LiveReportExportType>
-
- com.kaltura.client.enums.LiveReportExportType
-
- All Implemented Interfaces:
EnumAsInt,Serializable,Comparable<LiveReportExportType>
public enum LiveReportExportType extends Enum<LiveReportExportType> 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 ENTRY_TIME_LINE_ALLENTRY_TIME_LINE_LIVELOCATION_ALLLOCATION_LIVEPARTNER_TOTAL_ALLPARTNER_TOTAL_LIVESYNDICATION_ALLSYNDICATION_LIVE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LiveReportExportTypeget(Integer value)intgetValue()voidsetValue(int value)static LiveReportExportTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LiveReportExportType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARTNER_TOTAL_ALL
public static final LiveReportExportType PARTNER_TOTAL_ALL
-
PARTNER_TOTAL_LIVE
public static final LiveReportExportType PARTNER_TOTAL_LIVE
-
ENTRY_TIME_LINE_ALL
public static final LiveReportExportType ENTRY_TIME_LINE_ALL
-
ENTRY_TIME_LINE_LIVE
public static final LiveReportExportType ENTRY_TIME_LINE_LIVE
-
LOCATION_ALL
public static final LiveReportExportType LOCATION_ALL
-
LOCATION_LIVE
public static final LiveReportExportType LOCATION_LIVE
-
SYNDICATION_ALL
public static final LiveReportExportType SYNDICATION_ALL
-
SYNDICATION_LIVE
public static final LiveReportExportType SYNDICATION_LIVE
-
-
Method Detail
-
values
public static LiveReportExportType[] 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 (LiveReportExportType c : LiveReportExportType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LiveReportExportType 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 LiveReportExportType get(Integer value)
-
-