public static enum HB.AccessMode extends java.lang.Enum<HB.AccessMode>
| Enum Constant and Description |
|---|
CLOSED
Disallow receiving code.
|
LOCAL
Allow receiving incoming code only from a controller running on the same host machine.
|
OPEN
Allow receiving incoming code from any controller.
|
| Modifier and Type | Method and Description |
|---|---|
static HB.AccessMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HB.AccessMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HB.AccessMode OPEN
public static final HB.AccessMode LOCAL
public static final HB.AccessMode CLOSED
public static HB.AccessMode[] values()
for (HB.AccessMode c : HB.AccessMode.values()) System.out.println(c);
public static HB.AccessMode 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 null