public static enum Mailbox.Type extends java.lang.Enum<Mailbox.Type>
Enum Constant and Description |
---|
group
A group mailbox (for now, only deliver to users in group)
|
mailshare
A share mail folder
|
resource
A resource mailbox (deliver ics)
|
user
A user mailbox
|
Modifier and Type | Method and Description |
---|---|
static Mailbox.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mailbox.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mailbox.Type user
public static final Mailbox.Type mailshare
public static final Mailbox.Type group
public static final Mailbox.Type resource
public static Mailbox.Type[] values()
for (Mailbox.Type c : Mailbox.Type.values()) System.out.println(c);
public static Mailbox.Type 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 nullCopyright © 2021. All Rights Reserved.