Enum MultipleAddresses.Type
- java.lang.Object
-
- java.lang.Enum<MultipleAddresses.Type>
-
- org.jivesoftware.smackx.address.packet.MultipleAddresses.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MultipleAddresses.Type>
- Enclosing class:
- MultipleAddresses
public static enum MultipleAddresses.Type extends java.lang.Enum<MultipleAddresses.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MultipleAddresses.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MultipleAddresses.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
bcc
public static final MultipleAddresses.Type bcc
-
cc
public static final MultipleAddresses.Type cc
-
noreply
public static final MultipleAddresses.Type noreply
-
replyroom
public static final MultipleAddresses.Type replyroom
-
replyto
public static final MultipleAddresses.Type replyto
-
to
public static final MultipleAddresses.Type to
-
ofrom
public static final MultipleAddresses.Type ofrom
The "original from" type used to indicate the real originator of the stanza.This Extended Stanza Addressing type is not specified in XEP-33, but in XEP-45 ยง 7.2.14 (Example 36).
-
-
Method Detail
-
values
public static MultipleAddresses.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MultipleAddresses.Type c : MultipleAddresses.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultipleAddresses.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-