Package com.kaltura.client.enums
Enum ESearchEntryOrderByFieldName
- java.lang.Object
-
- java.lang.Enum<ESearchEntryOrderByFieldName>
-
- com.kaltura.client.enums.ESearchEntryOrderByFieldName
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<ESearchEntryOrderByFieldName>
public enum ESearchEntryOrderByFieldName extends Enum<ESearchEntryOrderByFieldName> 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 CREATED_ATEND_DATELAST_PLAYED_ATNAMEPLAYSPLAYS_LAST_1_DAYPLAYS_LAST_30_DAYSPLAYS_LAST_7_DAYSRANKSTART_DATEUPDATED_ATVIEWSVIEWS_LAST_1_DAYVIEWS_LAST_30_DAYSVIEWS_LAST_7_DAYSVOTES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ESearchEntryOrderByFieldNameget(String value)StringgetValue()voidsetValue(String value)static ESearchEntryOrderByFieldNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ESearchEntryOrderByFieldName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATED_AT
public static final ESearchEntryOrderByFieldName CREATED_AT
-
END_DATE
public static final ESearchEntryOrderByFieldName END_DATE
-
LAST_PLAYED_AT
public static final ESearchEntryOrderByFieldName LAST_PLAYED_AT
-
NAME
public static final ESearchEntryOrderByFieldName NAME
-
PLAYS
public static final ESearchEntryOrderByFieldName PLAYS
-
PLAYS_LAST_1_DAY
public static final ESearchEntryOrderByFieldName PLAYS_LAST_1_DAY
-
PLAYS_LAST_30_DAYS
public static final ESearchEntryOrderByFieldName PLAYS_LAST_30_DAYS
-
PLAYS_LAST_7_DAYS
public static final ESearchEntryOrderByFieldName PLAYS_LAST_7_DAYS
-
RANK
public static final ESearchEntryOrderByFieldName RANK
-
START_DATE
public static final ESearchEntryOrderByFieldName START_DATE
-
UPDATED_AT
public static final ESearchEntryOrderByFieldName UPDATED_AT
-
VIEWS
public static final ESearchEntryOrderByFieldName VIEWS
-
VIEWS_LAST_1_DAY
public static final ESearchEntryOrderByFieldName VIEWS_LAST_1_DAY
-
VIEWS_LAST_30_DAYS
public static final ESearchEntryOrderByFieldName VIEWS_LAST_30_DAYS
-
VIEWS_LAST_7_DAYS
public static final ESearchEntryOrderByFieldName VIEWS_LAST_7_DAYS
-
VOTES
public static final ESearchEntryOrderByFieldName VOTES
-
-
Method Detail
-
values
public static ESearchEntryOrderByFieldName[] 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 (ESearchEntryOrderByFieldName c : ESearchEntryOrderByFieldName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ESearchEntryOrderByFieldName 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 ESearchEntryOrderByFieldName get(String value)
-
-