public static enum TestSystemReadyMonitor.Behaviour extends Enum<TestSystemReadyMonitor.Behaviour>
Enum Constant and Description |
---|
IMMEDIATE
The system state is always ACTIVE, there are never any failures, and
any
SystemReadyListener registrations immediately get their
SystemReadyListener.onSystemBootReady() invoked. |
NEVER
The system state is always ACTIVE, there are never any failures, and
any
SystemReadyListener registrations *NEVER* get their
SystemReadyListener.onSystemBootReady() invoked. |
Modifier and Type | Method and Description |
---|---|
static TestSystemReadyMonitor.Behaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestSystemReadyMonitor.Behaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestSystemReadyMonitor.Behaviour NEVER
SystemReadyListener
registrations *NEVER* get their
SystemReadyListener.onSystemBootReady()
invoked.public static final TestSystemReadyMonitor.Behaviour IMMEDIATE
SystemReadyListener
registrations immediately get their
SystemReadyListener.onSystemBootReady()
invoked.public static TestSystemReadyMonitor.Behaviour[] values()
for (TestSystemReadyMonitor.Behaviour c : TestSystemReadyMonitor.Behaviour.values()) System.out.println(c);
public static TestSystemReadyMonitor.Behaviour 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 © 2019 OpenDaylight. All rights reserved.