Package | Description |
---|---|
org.jivesoftware.smackx.pubsub |
Smack's API for XEP-0060: Publish-Subscribe.
|
Modifier and Type | Method and Description |
---|---|
static Item.ItemNamespace |
Item.ItemNamespace.fromXmlns(String xmlns) |
static Item.ItemNamespace |
Item.ItemNamespace.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Item.ItemNamespace[] |
Item.ItemNamespace.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
Item(Item.ItemNamespace itemNamespace,
String itemId)
Create an Item with an id but no payload.
|
Item(Item.ItemNamespace itemNamespace,
String itemId,
String nodeId)
Create an Item with an id and a node id.
|
PayloadItem(Item.ItemNamespace itemNamespace,
String itemId,
String nodeId,
E payloadExt)
Create an Item with an id, node id and payload.
|