Package com.kaltura.client.enums
Enum MetadataObjectType
- java.lang.Object
-
- java.lang.Enum<MetadataObjectType>
-
- com.kaltura.client.enums.MetadataObjectType
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<MetadataObjectType>
public enum MetadataObjectType extends Enum<MetadataObjectType> 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 AD_CUE_POINTANNOTATIONANSWER_CUE_POINTCATEGORYCODE_CUE_POINTDYNAMIC_OBJECTENTRYPARTNERQUESTION_CUE_POINTTHUMB_CUE_POINTUSERUSER_ENTRY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetadataObjectTypeget(String value)StringgetValue()voidsetValue(String value)static MetadataObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AD_CUE_POINT
public static final MetadataObjectType AD_CUE_POINT
-
ANNOTATION
public static final MetadataObjectType ANNOTATION
-
CODE_CUE_POINT
public static final MetadataObjectType CODE_CUE_POINT
-
ANSWER_CUE_POINT
public static final MetadataObjectType ANSWER_CUE_POINT
-
QUESTION_CUE_POINT
public static final MetadataObjectType QUESTION_CUE_POINT
-
THUMB_CUE_POINT
public static final MetadataObjectType THUMB_CUE_POINT
-
ENTRY
public static final MetadataObjectType ENTRY
-
CATEGORY
public static final MetadataObjectType CATEGORY
-
USER
public static final MetadataObjectType USER
-
PARTNER
public static final MetadataObjectType PARTNER
-
DYNAMIC_OBJECT
public static final MetadataObjectType DYNAMIC_OBJECT
-
USER_ENTRY
public static final MetadataObjectType USER_ENTRY
-
-
Method Detail
-
values
public static MetadataObjectType[] 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 (MetadataObjectType c : MetadataObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataObjectType 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 MetadataObjectType get(String value)
-
-