Enum JsonObjectTypes
- java.lang.Object
-
- java.lang.Enum<JsonObjectTypes>
-
- com.blackberry.workspaces.api.sdk.connectors.common.enums.JsonObjectTypes
-
- All Implemented Interfaces:
Serializable
,Comparable<JsonObjectTypes>
public enum JsonObjectTypes extends Enum<JsonObjectTypes>
An enum of json object types
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JsonObjectTypes
valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonObjectTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROOM
public static final JsonObjectTypes ROOM
-
WORKSPACE_ENTITY
public static final JsonObjectTypes WORKSPACE_ENTITY
-
PERMISSION
public static final JsonObjectTypes PERMISSION
-
TAG_STRING_VALUE
public static final JsonObjectTypes TAG_STRING_VALUE
-
TAG_FIELD
public static final JsonObjectTypes TAG_FIELD
-
WORKSPACE
public static final JsonObjectTypes WORKSPACE
-
DOCUMENT_ANNOTATION_FIELD
public static final JsonObjectTypes DOCUMENT_ANNOTATION_FIELD
-
DOCUMENT
public static final JsonObjectTypes DOCUMENT
-
FOLDER
public static final JsonObjectTypes FOLDER
-
MEMBERS
public static final JsonObjectTypes MEMBERS
-
PERMITTED_ENTITY
public static final JsonObjectTypes PERMITTED_ENTITY
-
DEVICE
public static final JsonObjectTypes DEVICE
-
DOCUMENT_LICENSE
public static final JsonObjectTypes DOCUMENT_LICENSE
-
DOCUMENT_ANNOTATION
public static final JsonObjectTypes DOCUMENT_ANNOTATION
-
TAG_DATE_VALUE
public static final JsonObjectTypes TAG_DATE_VALUE
-
CLASSIFICATION
public static final JsonObjectTypes CLASSIFICATION
-
TAG_LIST
public static final JsonObjectTypes TAG_LIST
-
ROOM_ENTITY
public static final JsonObjectTypes ROOM_ENTITY
-
ENTITY_PERMISSION
public static final JsonObjectTypes ENTITY_PERMISSION
-
TAG_NUMERIC_VALUE
public static final JsonObjectTypes TAG_NUMERIC_VALUE
-
-
Method Detail
-
values
public static JsonObjectTypes[] 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 (JsonObjectTypes c : JsonObjectTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonObjectTypes 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
-
-