public enum TestOption extends Enum<TestOption>
| Enum Constant and Description |
|---|
set |
testOnly |
testThenSet |
| Modifier and Type | Method and Description |
|---|---|
static TestOption |
getDefault() |
static TestOption |
getFromXmlName(String testOptionXmlName) |
static TestOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestOption testOnly
public static final TestOption set
public static final TestOption testThenSet
public static TestOption[] values()
for (TestOption c : TestOption.values()) System.out.println(c);
public static TestOption 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 nullpublic static TestOption getFromXmlName(String testOptionXmlName)
public static TestOption getDefault()
Copyright © 2016 OpenDaylight. All rights reserved.