Enum GdprStatus

    • Enum Constant Detail

      • 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 name
        NullPointerException - if the argument is null