Package com.kaltura.client.enums
Enum BulkUploadObjectType
- java.lang.Object
-
- java.lang.Enum<BulkUploadObjectType>
-
- com.kaltura.client.enums.BulkUploadObjectType
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<BulkUploadObjectType>
public enum BulkUploadObjectType extends Enum<BulkUploadObjectType> 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 CATEGORYCATEGORY_ENTRYCATEGORY_USERENTRYJOBSCHEDULE_EVENTSCHEDULE_RESOURCEUSERUSER_ENTRYVENDOR_CATALOG_ITEM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BulkUploadObjectTypeget(String value)StringgetValue()voidsetValue(String value)static BulkUploadObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BulkUploadObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOB
public static final BulkUploadObjectType JOB
-
SCHEDULE_EVENT
public static final BulkUploadObjectType SCHEDULE_EVENT
-
SCHEDULE_RESOURCE
public static final BulkUploadObjectType SCHEDULE_RESOURCE
-
ENTRY
public static final BulkUploadObjectType ENTRY
-
CATEGORY
public static final BulkUploadObjectType CATEGORY
-
USER
public static final BulkUploadObjectType USER
-
CATEGORY_USER
public static final BulkUploadObjectType CATEGORY_USER
-
CATEGORY_ENTRY
public static final BulkUploadObjectType CATEGORY_ENTRY
-
USER_ENTRY
public static final BulkUploadObjectType USER_ENTRY
-
VENDOR_CATALOG_ITEM
public static final BulkUploadObjectType VENDOR_CATALOG_ITEM
-
-
Method Detail
-
values
public static BulkUploadObjectType[] 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 (BulkUploadObjectType c : BulkUploadObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BulkUploadObjectType 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 BulkUploadObjectType get(String value)
-
-