|
Openfire 3.6.0 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Roster.Ask> org.xmpp.packet.Roster.Ask
public static enum Roster.Ask
Type-safe enumeration for the roster ask type. Valid ask types:
Roster.Ask.subscribe
-- the roster item has been asked
for permission to subscribe to their presence but no response has been received.
Roster.Ask.unsubscribe
-- the roster owner has asked
to the roster item to unsubscribe from it's presence but has not received
confirmation.
Enum Constant Summary | |
---|---|
subscribe
The roster item has been asked for permission to subscribe to their presence but no response has been received. |
|
unsubscribe
The roster owner has asked to the roster item to unsubscribe from it's presence but has not received confirmation. |
Method Summary | |
---|---|
static Roster.Ask |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Roster.Ask[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Roster.Ask subscribe
public static final Roster.Ask unsubscribe
Method Detail |
---|
public static final Roster.Ask[] values()
for(Roster.Ask c : Roster.Ask.values()) System.out.println(c);
public static Roster.Ask valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
Openfire 3.6.0 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |