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