public static enum DeliverTo.DELIVER_TO extends java.lang.Enum<DeliverTo.DELIVER_TO>
| Enum Constant and Description |
|---|
ALL |
BROADCASTER |
RESOURCE |
| Modifier and Type | Method and Description |
|---|---|
static DeliverTo.DELIVER_TO |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliverTo.DELIVER_TO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliverTo.DELIVER_TO RESOURCE
public static final DeliverTo.DELIVER_TO BROADCASTER
public static final DeliverTo.DELIVER_TO ALL
public static DeliverTo.DELIVER_TO[] values()
for (DeliverTo.DELIVER_TO c : DeliverTo.DELIVER_TO.values()) System.out.println(c);
public static DeliverTo.DELIVER_TO 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 © 2020. All Rights Reserved.