Enum ProtectAnywhereSettingsActionLogType
- java.lang.Object
-
- java.lang.Enum<ProtectAnywhereSettingsActionLogType>
-
- com.blackberry.workspaces.api.sdk.enums.ProtectAnywhereSettingsActionLogType
-
- All Implemented Interfaces:
Serializable
,Comparable<ProtectAnywhereSettingsActionLogType>
public enum ProtectAnywhereSettingsActionLogType extends Enum<ProtectAnywhereSettingsActionLogType>
An enum of log types for Protect Anywhere settings actions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLE_PROTECT_ANYWHERE
Disable ProtectorENABLE_PROTECT_ANYWHERE
Enable Protector
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProtectAnywhereSettingsActionLogType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProtectAnywhereSettingsActionLogType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENABLE_PROTECT_ANYWHERE
public static final ProtectAnywhereSettingsActionLogType ENABLE_PROTECT_ANYWHERE
Enable Protector
-
DISABLE_PROTECT_ANYWHERE
public static final ProtectAnywhereSettingsActionLogType DISABLE_PROTECT_ANYWHERE
Disable Protector
-
-
Method Detail
-
values
public static ProtectAnywhereSettingsActionLogType[] 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 (ProtectAnywhereSettingsActionLogType c : ProtectAnywhereSettingsActionLogType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProtectAnywhereSettingsActionLogType 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
-
-