public enum ItemReply extends Enum<ItemReply>
NodeConfiguration.getItemReply()| Enum Constant and Description |
|---|
OWNER
Statically specify a replyto of the node owner(s).
|
PUBLISHER
Dynamically specify a replyto of the item publisher.
|
| Modifier and Type | Method and Description |
|---|---|
static ItemReply |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemReply[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemReply OWNER
public static final ItemReply PUBLISHER
public static ItemReply[] values()
for (ItemReply c : ItemReply.values()) System.out.println(c);
public static ItemReply 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 © 2014–2015 XMPP.rocks. All rights reserved.