public static enum DeliverTo.DELIVER_TO extends Enum<DeliverTo.DELIVER_TO>
| Enum Constant and Description |
|---|
ALL |
BROADCASTER |
RESOURCE |
| Modifier and Type | Method and Description |
|---|---|
static DeliverTo.DELIVER_TO |
valueOf(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(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 © 2016. All rights reserved.