|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MailSensitivity>
com.aspose.email.MailSensitivity
public enum MailSensitivity
Specifies the sensitivity of a MailMessage.
Enum Constant Summary | |
---|---|
CompanyConfidential
Sets the sensitivity to CompanyConfidential. |
|
None
No Sensitivity set. |
|
Normal
The normal sensitivity. |
|
Personal
Sets the sensitivity to Personal. |
|
Private
Sets the sensitivity to Private. |
Method Summary | |
---|---|
int |
getValue()
|
static MailSensitivity |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MailSensitivity[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final MailSensitivity None
No Sensitivity set.
public static final MailSensitivity Normal
The normal sensitivity.
public static final MailSensitivity Personal
Sets the sensitivity to Personal.
public static final MailSensitivity Private
Sets the sensitivity to Private.
public static final MailSensitivity CompanyConfidential
Sets the sensitivity to CompanyConfidential.
Method Detail |
---|
public static MailSensitivity[] values()
for (MailSensitivity c : MailSensitivity.values()) System.out.println(c);
public static MailSensitivity valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int getValue()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |