Enum ApiDocumentOrderSDS
- java.lang.Object
-
- java.lang.Enum<ApiDocumentOrderSDS>
-
- com.blackberry.workspaces.sdk.api.enums.ApiDocumentOrderSDS
-
- All Implemented Interfaces:
Serializable
,Comparable<ApiDocumentOrderSDS>
public enum ApiDocumentOrderSDS extends Enum<ApiDocumentOrderSDS>
An enum of API file order SDS values
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FILE_NAME
No longer supported.LAST_UPDATED
Last updatedLAST_VIEWED
No longer used.MODIFIED_DATE
Modified dateNAME
NameSCORE
No longer used.SENDER
SenderSENDER_ADDRESS
Sender addressSIZE
SizeTYPE
No longer used.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApiDocumentOrderSDS
valueOf(String name)
Returns the enum constant of this type with the specified name.static ApiDocumentOrderSDS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final ApiDocumentOrderSDS NAME
Name
-
SENDER
public static final ApiDocumentOrderSDS SENDER
Sender
-
SENDER_ADDRESS
public static final ApiDocumentOrderSDS SENDER_ADDRESS
Sender address
-
FILE_NAME
public static final ApiDocumentOrderSDS FILE_NAME
No longer supported.
-
LAST_UPDATED
public static final ApiDocumentOrderSDS LAST_UPDATED
Last updated
-
LAST_VIEWED
public static final ApiDocumentOrderSDS LAST_VIEWED
No longer used. Acts the same as using the default values.
-
SIZE
public static final ApiDocumentOrderSDS SIZE
Size
-
TYPE
public static final ApiDocumentOrderSDS TYPE
No longer used. Acts the same as using the default values.
-
SCORE
public static final ApiDocumentOrderSDS SCORE
No longer used. Acts the same as using the default values.
-
MODIFIED_DATE
public static final ApiDocumentOrderSDS MODIFIED_DATE
Modified date
-
-
Method Detail
-
values
public static ApiDocumentOrderSDS[] 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 (ApiDocumentOrderSDS c : ApiDocumentOrderSDS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApiDocumentOrderSDS 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
-
-