Package com.kaltura.client.enums
Enum DropFolderFileErrorCode
- java.lang.Object
-
- java.lang.Enum<DropFolderFileErrorCode>
-
- com.kaltura.client.enums.DropFolderFileErrorCode
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<DropFolderFileErrorCode>
public enum DropFolderFileErrorCode extends Enum<DropFolderFileErrorCode> 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
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DropFolderFileErrorCodeget(String value)StringgetValue()voidsetValue(String value)static DropFolderFileErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static DropFolderFileErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ERROR_ADDING_BULK_UPLOAD
public static final DropFolderFileErrorCode ERROR_ADDING_BULK_UPLOAD
-
ERROR_ADD_CONTENT_RESOURCE
public static final DropFolderFileErrorCode ERROR_ADD_CONTENT_RESOURCE
-
ERROR_IN_BULK_UPLOAD
public static final DropFolderFileErrorCode ERROR_IN_BULK_UPLOAD
-
ERROR_WRITING_TEMP_FILE
public static final DropFolderFileErrorCode ERROR_WRITING_TEMP_FILE
-
LOCAL_FILE_WRONG_CHECKSUM
public static final DropFolderFileErrorCode LOCAL_FILE_WRONG_CHECKSUM
-
LOCAL_FILE_WRONG_SIZE
public static final DropFolderFileErrorCode LOCAL_FILE_WRONG_SIZE
-
MALFORMED_XML_FILE
public static final DropFolderFileErrorCode MALFORMED_XML_FILE
-
XML_FILE_SIZE_EXCEED_LIMIT
public static final DropFolderFileErrorCode XML_FILE_SIZE_EXCEED_LIMIT
-
ERROR_UPDATE_ENTRY
public static final DropFolderFileErrorCode ERROR_UPDATE_ENTRY
-
ERROR_ADD_ENTRY
public static final DropFolderFileErrorCode ERROR_ADD_ENTRY
-
FLAVOR_NOT_FOUND
public static final DropFolderFileErrorCode FLAVOR_NOT_FOUND
-
FLAVOR_MISSING_IN_FILE_NAME
public static final DropFolderFileErrorCode FLAVOR_MISSING_IN_FILE_NAME
-
SLUG_REGEX_NO_MATCH
public static final DropFolderFileErrorCode SLUG_REGEX_NO_MATCH
-
ERROR_READING_FILE
public static final DropFolderFileErrorCode ERROR_READING_FILE
-
ERROR_DOWNLOADING_FILE
public static final DropFolderFileErrorCode ERROR_DOWNLOADING_FILE
-
ERROR_UPDATE_FILE
public static final DropFolderFileErrorCode ERROR_UPDATE_FILE
-
ERROR_ADDING_CONTENT_PROCESSOR
public static final DropFolderFileErrorCode ERROR_ADDING_CONTENT_PROCESSOR
-
ERROR_IN_CONTENT_PROCESSOR
public static final DropFolderFileErrorCode ERROR_IN_CONTENT_PROCESSOR
-
ERROR_DELETING_FILE
public static final DropFolderFileErrorCode ERROR_DELETING_FILE
-
FILE_NO_MATCH
public static final DropFolderFileErrorCode FILE_NO_MATCH
-
-
Method Detail
-
values
public static DropFolderFileErrorCode[] 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 (DropFolderFileErrorCode c : DropFolderFileErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DropFolderFileErrorCode 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 DropFolderFileErrorCode get(String value)
-
-