Enum ErrorItemType
- java.lang.Object
-
- java.lang.Enum<ErrorItemType>
-
- com.blackberry.workspaces.sdk.api.enums.ErrorItemType
-
- All Implemented Interfaces:
Serializable
,Comparable<ErrorItemType>
public enum ErrorItemType extends Enum<ErrorItemType>
An enum of error item types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_DIRECTORY_GROUP
Active Directory groupCIFS
CIFSCSV_LINE_NUMBER
CSV line numberDEVICE
DeviceDISTRIBUTION_LIST_GIVEN_ID
Distribution list given IDDOCUMENT_VERSION_GUID
File version GUIDDOCUSIGN
DocuSignDOMAIN
DomainDOWNLOAD
DownloadEXTERNAL_REPOSITORY
External repositoryFILE_GUID
File GUIDFILE_TYPE
File typeFOLDER_ID
Folder IDFOLDER_PATH
Folder pathGROUP
GroupINPUT_FILE
Input fileINVITE_GROUPS
Invite groupsORG_ROLE
Org roleORGANIZATION
OrganizationORGANIZATION_TAG
Organization tagPERMISSION_REQUEST
Permission requestPERMITTED_ENTITY
Permitted entityPERMITTED_ENTITY_ADDRESS
Permitted entity addressPLAN_ID
Plan IDREPORT
REPORTROOM_ID
Workspace IDSHAREPOINT
SharepointTRANSIENT_FILE_PATH
Transient file pathUSER_ADDRESS
User addressUSER_ALIAS
User aliasUSER_GUID
User GUIDUSER_NAME
User nameUSER_NOTIFICATION
User notificationUSER_PASSWORD
User password
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorItemType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ErrorItemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE_GUID
public static final ErrorItemType FILE_GUID
File GUID
-
TRANSIENT_FILE_PATH
public static final ErrorItemType TRANSIENT_FILE_PATH
Transient file path
-
FOLDER_PATH
public static final ErrorItemType FOLDER_PATH
Folder path
-
USER_ADDRESS
public static final ErrorItemType USER_ADDRESS
User address
-
ROOM_ID
public static final ErrorItemType ROOM_ID
Workspace ID
-
DISTRIBUTION_LIST_GIVEN_ID
public static final ErrorItemType DISTRIBUTION_LIST_GIVEN_ID
Distribution list given ID
-
USER_ALIAS
public static final ErrorItemType USER_ALIAS
User alias
-
ORG_ROLE
public static final ErrorItemType ORG_ROLE
Org role
-
DEVICE
public static final ErrorItemType DEVICE
Device
-
ORGANIZATION_TAG
public static final ErrorItemType ORGANIZATION_TAG
Organization tag
-
DOCUMENT_VERSION_GUID
public static final ErrorItemType DOCUMENT_VERSION_GUID
File version GUID
-
PERMITTED_ENTITY_ADDRESS
public static final ErrorItemType PERMITTED_ENTITY_ADDRESS
Permitted entity address
-
INVITE_GROUPS
public static final ErrorItemType INVITE_GROUPS
Invite groups
-
USER_NAME
public static final ErrorItemType USER_NAME
User name
-
USER_NOTIFICATION
public static final ErrorItemType USER_NOTIFICATION
User notification
-
ACTIVE_DIRECTORY_GROUP
public static final ErrorItemType ACTIVE_DIRECTORY_GROUP
Active Directory group
-
FOLDER_ID
public static final ErrorItemType FOLDER_ID
Folder ID
-
PLAN_ID
public static final ErrorItemType PLAN_ID
Plan ID
-
SHAREPOINT
public static final ErrorItemType SHAREPOINT
Sharepoint
-
DOMAIN
public static final ErrorItemType DOMAIN
Domain
-
DOWNLOAD
public static final ErrorItemType DOWNLOAD
Download
-
GROUP
public static final ErrorItemType GROUP
Group
-
CIFS
public static final ErrorItemType CIFS
CIFS
-
EXTERNAL_REPOSITORY
public static final ErrorItemType EXTERNAL_REPOSITORY
External repository
-
PERMISSION_REQUEST
public static final ErrorItemType PERMISSION_REQUEST
Permission request
-
USER_PASSWORD
public static final ErrorItemType USER_PASSWORD
User password
-
ORGANIZATION
public static final ErrorItemType ORGANIZATION
Organization
-
CSV_LINE_NUMBER
public static final ErrorItemType CSV_LINE_NUMBER
CSV line number
-
FILE_TYPE
public static final ErrorItemType FILE_TYPE
File type
-
USER_GUID
public static final ErrorItemType USER_GUID
User GUID
-
INPUT_FILE
public static final ErrorItemType INPUT_FILE
Input file
-
PERMITTED_ENTITY
public static final ErrorItemType PERMITTED_ENTITY
Permitted entity
-
DOCUSIGN
public static final ErrorItemType DOCUSIGN
DocuSign
-
REPORT
public static final ErrorItemType REPORT
REPORT
-
-
Method Detail
-
values
public static ErrorItemType[] 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 (ErrorItemType c : ErrorItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorItemType 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
-
-