Package com.kaltura.client.enums
Enum DropFolderFileStatus
- java.lang.Object
-
- java.lang.Enum<DropFolderFileStatus>
-
- com.kaltura.client.enums.DropFolderFileStatus
-
- All Implemented Interfaces:
EnumAsInt,Serializable,Comparable<DropFolderFileStatus>
public enum DropFolderFileStatus extends Enum<DropFolderFileStatus> implements EnumAsInt
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 DELETEDDETECTEDDOWNLOADINGERROR_DELETINGERROR_DOWNLOADINGERROR_HANDLINGHANDLEDIGNORENO_MATCHPARSEDPENDINGPROCESSINGPURGEDUPLOADINGWAITING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DropFolderFileStatusget(Integer value)intgetValue()voidsetValue(int value)static DropFolderFileStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static DropFolderFileStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPLOADING
public static final DropFolderFileStatus UPLOADING
-
PENDING
public static final DropFolderFileStatus PENDING
-
WAITING
public static final DropFolderFileStatus WAITING
-
HANDLED
public static final DropFolderFileStatus HANDLED
-
IGNORE
public static final DropFolderFileStatus IGNORE
-
DELETED
public static final DropFolderFileStatus DELETED
-
PURGED
public static final DropFolderFileStatus PURGED
-
NO_MATCH
public static final DropFolderFileStatus NO_MATCH
-
ERROR_HANDLING
public static final DropFolderFileStatus ERROR_HANDLING
-
ERROR_DELETING
public static final DropFolderFileStatus ERROR_DELETING
-
DOWNLOADING
public static final DropFolderFileStatus DOWNLOADING
-
ERROR_DOWNLOADING
public static final DropFolderFileStatus ERROR_DOWNLOADING
-
PROCESSING
public static final DropFolderFileStatus PROCESSING
-
PARSED
public static final DropFolderFileStatus PARSED
-
DETECTED
public static final DropFolderFileStatus DETECTED
-
-
Method Detail
-
values
public static DropFolderFileStatus[] 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 (DropFolderFileStatus c : DropFolderFileStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DropFolderFileStatus 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
-
setValue
public void setValue(int value)
-
get
public static DropFolderFileStatus get(Integer value)
-
-