Package org.jivesoftware.smackx.pubsub
Enum PresenceState
- java.lang.Object
-
- java.lang.Enum<PresenceState>
-
- org.jivesoftware.smackx.pubsub.PresenceState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PresenceState>
public enum PresenceState extends java.lang.Enum<PresenceState>
Defines the possible valid presence states for node subscription viaSubscribeFormReader.getShowValues()
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PresenceState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PresenceState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
chat
public static final PresenceState chat
-
online
public static final PresenceState online
-
away
public static final PresenceState away
-
xa
public static final PresenceState xa
-
dnd
public static final PresenceState dnd
-
-
Method Detail
-
values
public static PresenceState[] 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 (PresenceState c : PresenceState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PresenceState 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
-
-