public static enum Roster.Ask extends Enum<Roster.Ask>
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 and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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 are declared.
|
public static final Roster.Ask subscribe
public static final Roster.Ask unsubscribe
public static 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 nameNullPointerException - if the argument is nullCopyright © 2009–2017 Ignite Realtime. All rights reserved.