Enum MailProcessorConfig.TextKeys

    • Enum Constant Detail

      • SMIME_KEYSTOREFILE_NOT_CONFIGURED

        public static final MailProcessorConfig.TextKeys SMIME_KEYSTOREFILE_NOT_CONFIGURED
        Kein Keystore angegeben.
      • SMIME_KEYSTOREFILE_NOT_EXISTING

        public static final MailProcessorConfig.TextKeys SMIME_KEYSTOREFILE_NOT_EXISTING
        Keystore angegeben, aber kann nicht geöffnet werden.
      • SMIME_KEYSTOREFILE_OPEN_ABORTED

        public static final MailProcessorConfig.TextKeys SMIME_KEYSTOREFILE_OPEN_ABORTED
        Passwortabfrage für den Keystore abgebrochen.
      • SMIME_NO_RECEIVER_CERT_FOUND

        public static final MailProcessorConfig.TextKeys SMIME_NO_RECEIVER_CERT_FOUND
        Keine Zertifikate für die E-Mail Empfänger gefunden.
      • SMIME_JCE_UNLIMITED_STRENGTH_ERROR

        public static final MailProcessorConfig.TextKeys SMIME_JCE_UNLIMITED_STRENGTH_ERROR
        JRE Einschränkung zur Schlüssellänge
      • SMIME_NO_PRIVATE_KEY

        public static final MailProcessorConfig.TextKeys SMIME_NO_PRIVATE_KEY
        PrivateKey konnte nicht geöffnet werden. (z.B. PW Abgebrochen)
    • Method Detail

      • values

        public static MailProcessorConfig.TextKeys[] 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 (MailProcessorConfig.TextKeys c : MailProcessorConfig.TextKeys.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MailProcessorConfig.TextKeys valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null