Package org.xmpp.packet
Enum Roster.Ask
- All Implemented Interfaces:
Serializable,Comparable<Roster.Ask>,java.lang.constant.Constable
- Enclosing class:
- Roster
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe roster item has been asked for permission to subscribe to their presence but no response has been received.The roster owner has asked to the roster item to unsubscribe from it's presence but has not received confirmation. -
Method Summary
Modifier and TypeMethodDescriptionstatic Roster.AskReturns 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.
-
Enum Constant Details
-
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 Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-