public enum STMailMergeDest extends Enum<STMailMergeDest>
Java class for ST_MailMergeDest.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_MailMergeDest">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="newDocument"/>
<enumeration value="printer"/>
<enumeration value="email"/>
<enumeration value="fax"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EMAIL
Send Merged Documents as E-mail
Messages
|
FAX
Send Merged Documents as
Faxes
|
NEW_DOCUMENT
Send Merged Documents to New
Documents
|
PRINTER
Send Merged Documents to
Printer
|
| Modifier and Type | Method and Description |
|---|---|
static STMailMergeDest |
fromValue(String v) |
String |
value() |
static STMailMergeDest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STMailMergeDest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STMailMergeDest NEW_DOCUMENT
public static final STMailMergeDest PRINTER
public static final STMailMergeDest EMAIL
public static final STMailMergeDest FAX
public static STMailMergeDest[] values()
for (STMailMergeDest c : STMailMergeDest.values()) System.out.println(c);
public static STMailMergeDest valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static STMailMergeDest fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.