Enum GdprStatus
- java.lang.Object
-
- java.lang.Enum<GdprStatus>
-
- com.blackberry.workspaces.sdk.api.enums.GdprStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<GdprStatus>
public enum GdprStatus extends Enum<GdprStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DONE
GDPR DoneFIRST_PRE_GDPR_NOTIFICATION
Notify admins before GDPRFOURTH_PRE_GDPR_NOTIFICATION
Notify admins before GDPRNONE
NoneSECOND_PRE_GDPR_NOTIFICATION
Notify admins before GDPRSTARTED
GDPR started - and org is on deletion processTHIRD_PRE_GDPR_NOTIFICATION
Notify admins before GDPR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GdprStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static GdprStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final GdprStatus NONE
None
-
FIRST_PRE_GDPR_NOTIFICATION
public static final GdprStatus FIRST_PRE_GDPR_NOTIFICATION
Notify admins before GDPR
-
SECOND_PRE_GDPR_NOTIFICATION
public static final GdprStatus SECOND_PRE_GDPR_NOTIFICATION
Notify admins before GDPR
-
THIRD_PRE_GDPR_NOTIFICATION
public static final GdprStatus THIRD_PRE_GDPR_NOTIFICATION
Notify admins before GDPR
-
FOURTH_PRE_GDPR_NOTIFICATION
public static final GdprStatus FOURTH_PRE_GDPR_NOTIFICATION
Notify admins before GDPR
-
STARTED
public static final GdprStatus STARTED
GDPR started - and org is on deletion process
-
DONE
public static final GdprStatus DONE
GDPR Done
-
-
Method Detail
-
values
public static GdprStatus[] 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 (GdprStatus c : GdprStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GdprStatus 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
-
-