public static enum MailConfig.BoolCapVal extends java.lang.Enum<MailConfig.BoolCapVal>
| Modifier and Type | Method and Description |
|---|---|
static MailConfig.BoolCapVal |
parseBoolCapVal(java.lang.String capVal)
Parses given capability value.
|
java.lang.String |
toString() |
static MailConfig.BoolCapVal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MailConfig.BoolCapVal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailConfig.BoolCapVal AUTO
public static final MailConfig.BoolCapVal FALSE
public static final MailConfig.BoolCapVal TRUE
public static MailConfig.BoolCapVal[] values()
for (MailConfig.BoolCapVal c : MailConfig.BoolCapVal.values()) System.out.println(c);
public static MailConfig.BoolCapVal valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic static final MailConfig.BoolCapVal parseBoolCapVal(java.lang.String capVal)
public java.lang.String toString()
toString in class java.lang.Enum<MailConfig.BoolCapVal>