public static enum MailboxACL.SpecialName extends Enum<MailboxACL.SpecialName>
| Enum Constant and Description |
|---|
anybody |
authenticated |
owner |
| Modifier and Type | Method and Description |
|---|---|
static MailboxACL.SpecialName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailboxACL.SpecialName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailboxACL.SpecialName anybody
public static final MailboxACL.SpecialName authenticated
public static final MailboxACL.SpecialName owner
public static MailboxACL.SpecialName[] values()
for (MailboxACL.SpecialName c : MailboxACL.SpecialName.values()) System.out.println(c);
public static MailboxACL.SpecialName 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 nullCopyright © 2010-2012 The Apache Software Foundation. All Rights Reserved.