public enum ItemReply extends java.lang.Enum<ItemReply>
Defines whether owners or publishers should receive replies to items.
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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2014–2019 XMPP.rocks. All rights reserved.