Package net.webpdf.wsclient.openapi
Enum OperationConverterMail.AttachmentModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationConverterMail.AttachmentModeEnum>
-
- net.webpdf.wsclient.openapi.OperationConverterMail.AttachmentModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationConverterMail.AttachmentModeEnum>
- Enclosing class:
- OperationConverterMail
public static enum OperationConverterMail.AttachmentModeEnum extends Enum<OperationConverterMail.AttachmentModeEnum>
Specifies the manner in which attachments are to be processed in e-mails. * embed = Embed in original format * remove = Remove attachments * convert = Converts the attachments to PDF format and embeds them as an attachment * convertMerge = Converts the attachments to PDF format and appends them as additional page(s) at the end **Important:** If conversion to PDF format is not possible when using \"convert\" or \"convertMerge\", the attachment will be embedded in its original format.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONVERTCONVERT_EMBEDCONVERT_MERGECONVERT_MERGE_EMBEDEMBEDREMOVE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationConverterMail.AttachmentModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationConverterMail.AttachmentModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationConverterMail.AttachmentModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMBED
public static final OperationConverterMail.AttachmentModeEnum EMBED
-
REMOVE
public static final OperationConverterMail.AttachmentModeEnum REMOVE
-
CONVERT
public static final OperationConverterMail.AttachmentModeEnum CONVERT
-
CONVERT_MERGE
public static final OperationConverterMail.AttachmentModeEnum CONVERT_MERGE
-
CONVERT_EMBED
public static final OperationConverterMail.AttachmentModeEnum CONVERT_EMBED
-
CONVERT_MERGE_EMBED
public static final OperationConverterMail.AttachmentModeEnum CONVERT_MERGE_EMBED
-
-
Method Detail
-
values
public static OperationConverterMail.AttachmentModeEnum[] 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 (OperationConverterMail.AttachmentModeEnum c : OperationConverterMail.AttachmentModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationConverterMail.AttachmentModeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationConverterMail.AttachmentModeEnum>
-
fromValue
public static OperationConverterMail.AttachmentModeEnum fromValue(String value)
-
-