public static enum Address.Type extends Enum<Address.Type>
| Enum Constant and Description |
|---|
BCC
These addressees should receive 'blind carbon copies' of the stanza.
|
CC
These addressees are the secondary recipients of the stanza.
|
NOREPLY
This address type contains no actual address information.
|
REPLYROOM
This is the JID of a Multi-User Chat (XEP-0045) [5] room to which responses should be sent.
|
REPLYTO
This is the address to which all replies are requested to be sent.
|
TO
These addressees are the primary recipients of the stanza.
|
| Modifier and Type | Method and Description |
|---|---|
static Address.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Address.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Address.Type BCC
public static final Address.Type CC
public static final Address.Type NOREPLY
public static final Address.Type REPLYROOM
public static final Address.Type REPLYTO
public static final Address.Type TO
public static Address.Type[] values()
for (Address.Type c : Address.Type.values()) System.out.println(c);
public static Address.Type 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 © 2014 XMPP.rocks. All rights reserved.