Enum OrganizationCustomizationActionType
- java.lang.Object
-
- java.lang.Enum<OrganizationCustomizationActionType>
-
- com.blackberry.workspaces.api.sdk.enums.OrganizationCustomizationActionType
-
- All Implemented Interfaces:
Serializable
,Comparable<OrganizationCustomizationActionType>
public enum OrganizationCustomizationActionType extends Enum<OrganizationCustomizationActionType>
An enum of organization customization actions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EDIT_CUSOMIZATIONS
Edit customizationsREMOVE_CUSOMIZATIONS
Remove customizations
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrganizationCustomizationActionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrganizationCustomizationActionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EDIT_CUSOMIZATIONS
public static final OrganizationCustomizationActionType EDIT_CUSOMIZATIONS
Edit customizations
-
REMOVE_CUSOMIZATIONS
public static final OrganizationCustomizationActionType REMOVE_CUSOMIZATIONS
Remove customizations
-
-
Method Detail
-
values
public static OrganizationCustomizationActionType[] 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 (OrganizationCustomizationActionType c : OrganizationCustomizationActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrganizationCustomizationActionType 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
-
-