public enum MailboxTypeType extends Enum<MailboxTypeType>
Java class for MailboxTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MailboxTypeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Mailbox"/>
<enumeration value="PublicDL"/>
<enumeration value="PrivateDL"/>
<enumeration value="Contact"/>
<enumeration value="PublicFolder"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CONTACT |
MAILBOX |
PRIVATE_DL |
PUBLIC_DL |
PUBLIC_FOLDER |
| Modifier and Type | Method and Description |
|---|---|
static MailboxTypeType |
fromValue(String v) |
String |
value() |
static MailboxTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailboxTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailboxTypeType MAILBOX
public static final MailboxTypeType PUBLIC_DL
public static final MailboxTypeType PRIVATE_DL
public static final MailboxTypeType CONTACT
public static final MailboxTypeType PUBLIC_FOLDER
public static MailboxTypeType[] values()
for (MailboxTypeType c : MailboxTypeType.values()) System.out.println(c);
public static MailboxTypeType 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 MailboxTypeType fromValue(String v)
Copyright © 2019 Apereo. All rights reserved.