Package com.kaltura.client.enums
Enum ObjectTaskType
- java.lang.Object
-
- java.lang.Enum<ObjectTaskType>
-
- com.kaltura.client.enums.ObjectTaskType
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<ObjectTaskType>
public enum ObjectTaskType extends Enum<ObjectTaskType> 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 CONVERT_ENTRY_FLAVORSDELETE_ENTRYDELETE_ENTRY_FLAVORSDELETE_LOCAL_CONTENTDISPATCH_EVENT_NOTIFICATIONDISTRIBUTEEXECUTE_METADATA_XSLTMAIL_NOTIFICATIONMODIFY_CATEGORIESMODIFY_ENTRYSTORAGE_EXPORT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ObjectTaskTypeget(String value)StringgetValue()voidsetValue(String value)static ObjectTaskTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ObjectTaskType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISTRIBUTE
public static final ObjectTaskType DISTRIBUTE
-
DISPATCH_EVENT_NOTIFICATION
public static final ObjectTaskType DISPATCH_EVENT_NOTIFICATION
-
EXECUTE_METADATA_XSLT
public static final ObjectTaskType EXECUTE_METADATA_XSLT
-
DELETE_ENTRY
public static final ObjectTaskType DELETE_ENTRY
-
MODIFY_CATEGORIES
public static final ObjectTaskType MODIFY_CATEGORIES
-
DELETE_ENTRY_FLAVORS
public static final ObjectTaskType DELETE_ENTRY_FLAVORS
-
CONVERT_ENTRY_FLAVORS
public static final ObjectTaskType CONVERT_ENTRY_FLAVORS
-
DELETE_LOCAL_CONTENT
public static final ObjectTaskType DELETE_LOCAL_CONTENT
-
STORAGE_EXPORT
public static final ObjectTaskType STORAGE_EXPORT
-
MODIFY_ENTRY
public static final ObjectTaskType MODIFY_ENTRY
-
MAIL_NOTIFICATION
public static final ObjectTaskType MAIL_NOTIFICATION
-
-
Method Detail
-
values
public static ObjectTaskType[] 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 (ObjectTaskType c : ObjectTaskType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectTaskType 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 ObjectTaskType get(String value)
-
-