Package com.isode.x400.highlevel
Enum Bodypart.Bodypart_Type
- java.lang.Object
-
- java.lang.Enum<Bodypart.Bodypart_Type>
-
- com.isode.x400.highlevel.Bodypart.Bodypart_Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Bodypart.Bodypart_Type>
- Enclosing class:
- Bodypart
public static enum Bodypart.Bodypart_Type extends java.lang.Enum<Bodypart.Bodypart_Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BODYPART_ACP127DATA
X.400 P772 ACP127DATA body partBODYPART_ADATP3
X.400 P772 ADatP3 body part typeBODYPART_BINARY
bilaterally-defined body partBODYPART_CORRECTIONS
X.400 P772 Corrections body part typeBODYPART_FTBP
File transfer body partBODYPART_FWD_CONTENT
X.400 Forwarded content bodypart specified within X.420BODYPART_FWDENC
X.400 P772 Forwarded EncryptedBODYPART_GENERAL_TEXT
general-text body part containing arbitrary character setsBODYPART_IA5_TEXT
ia5-text body part.BODYPART_ISO8859_1
general-text body part containing ISO-8859-1 textBODYPART_ISO8859_2
general-text body part containing ISO-8859-2 textBODYPART_MESSAGE
Forwarded message body part, or returned IPM in IPNBODYPART_MM
X.400 P772 MM Forwarded bodypartBODYPART_TELETEX
teletex body part
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Bodypart.Bodypart_Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Bodypart.Bodypart_Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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_TELETEX
public static final Bodypart.Bodypart_Type BODYPART_TELETEX
teletex body part
-
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_BINARY
public static final Bodypart.Bodypart_Type BODYPART_BINARY
bilaterally-defined body part
-
BODYPART_MESSAGE
public static final Bodypart.Bodypart_Type BODYPART_MESSAGE
Forwarded message body part, or returned IPM in IPN
-
BODYPART_FTBP
public static final Bodypart.Bodypart_Type BODYPART_FTBP
File transfer body part
-
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_MM
public static final Bodypart.Bodypart_Type BODYPART_MM
X.400 P772 MM Forwarded bodypart
-
BODYPART_FWDENC
public static final Bodypart.Bodypart_Type BODYPART_FWDENC
X.400 P772 Forwarded Encrypted
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-