@Title(value="Testbed") public enum TestbedConf extends Enum<TestbedConf>
| Enum Constant and Description |
|---|
CONTROLLER |
PASSWORD |
| Modifier and Type | Method and Description |
|---|---|
static TestbedConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestbedConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.testbed.v1.password") @DefaultValue(value="testbed") public static final TestbedConf PASSWORD
@Path(value="oxalis.testbed.v1.controller") @DefaultValue(value="https://localhost/controller") public static final TestbedConf CONTROLLER
public static TestbedConf[] values()
for (TestbedConf c : TestbedConf.values()) System.out.println(c);
public static TestbedConf 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 © 2022 NorStella. All rights reserved.