public enum ItemReply extends Enum<ItemReply>
ConfigureForm.setItemReply(ItemReply),
which defines who should receive replies to items.| Enum Constant and Description |
|---|
owner
The node owner
|
publisher
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 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 null