Enum PdfConversionStatus
- java.lang.Object
-
- java.lang.Enum<PdfConversionStatus>
-
- com.blackberry.workspaces.sdk.api.enums.PdfConversionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<PdfConversionStatus>
public enum PdfConversionStatus extends Enum<PdfConversionStatus>
An enum of status values for PDF conversion
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETED
CompletedERROR
ErrorINITIATED
InitiatedNOT_INITIATED
Not initiatedNOT_SUPPORTED
Not supported
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PdfConversionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static PdfConversionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_SUPPORTED
public static final PdfConversionStatus NOT_SUPPORTED
Not supported
-
NOT_INITIATED
public static final PdfConversionStatus NOT_INITIATED
Not initiated
-
INITIATED
public static final PdfConversionStatus INITIATED
Initiated
-
COMPLETED
public static final PdfConversionStatus COMPLETED
Completed
-
ERROR
public static final PdfConversionStatus ERROR
Error
-
-
Method Detail
-
values
public static PdfConversionStatus[] 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 (PdfConversionStatus c : PdfConversionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfConversionStatus 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
-
-