public static enum XMPPConnection.FromModeextends java.lang.Enum<XMPPConnection.FromMode>
Enum Constant and Description |
---|
OMITTED Omit the 'from' attribute. |
UNCHANGED Leave the 'from' attribute unchanged. |
USER Set the from to the clients full JID. |
Modifier and Type | Method and Description |
---|---|
static XMPPConnection.FromMode | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static XMPPConnection.FromMode[] | values() Returns an array containing the constants of this enum type, inthe order they are declared. |
public static final XMPPConnection.FromMode UNCHANGED
public static final XMPPConnection.FromMode OMITTED
public static final XMPPConnection.FromMode USER
public static XMPPConnection.FromMode[] values()
for (XMPPConnection.FromMode c : XMPPConnection.FromMode.values()) System.out.println(c);
public static XMPPConnection.FromMode 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 null