Enum Bodypart.Bodypart_Type

    • Enum Constant Detail

      • BODYPART_IA5_TEXT

        public static final Bodypart.Bodypart_Type BODYPART_IA5_TEXT
        ia5-text body part. Only the ia5 repertoire is supported
      • BODYPART_GENERAL_TEXT

        public static final Bodypart.Bodypart_Type BODYPART_GENERAL_TEXT
        general-text body part containing arbitrary character sets
      • BODYPART_ISO8859_1

        public static final Bodypart.Bodypart_Type BODYPART_ISO8859_1
        general-text body part containing ISO-8859-1 text
      • BODYPART_ISO8859_2

        public static final Bodypart.Bodypart_Type BODYPART_ISO8859_2
        general-text body part containing ISO-8859-2 text
      • BODYPART_MESSAGE

        public static final Bodypart.Bodypart_Type BODYPART_MESSAGE
        Forwarded message body part, or returned IPM in IPN
      • BODYPART_ADATP3

        public static final Bodypart.Bodypart_Type BODYPART_ADATP3
        X.400 P772 ADatP3 body part type
      • BODYPART_CORRECTIONS

        public static final Bodypart.Bodypart_Type BODYPART_CORRECTIONS
        X.400 P772 Corrections body part type
      • BODYPART_ACP127DATA

        public static final Bodypart.Bodypart_Type BODYPART_ACP127DATA
        X.400 P772 ACP127DATA body part
      • BODYPART_FWD_CONTENT

        public static final Bodypart.Bodypart_Type BODYPART_FWD_CONTENT
        X.400 Forwarded content bodypart specified within X.420
    • Method Detail

      • values

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

        public static Bodypart.Bodypart_Type 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