@NonNullByDefault public enum Status extends Enum<Status>
Enum Constant and Description |
---|
CURRENT
CURRENT means that the definition is current and valid.
|
DEPRECATED
DEPRECATED indicates an obsolete definition, but it permits new/
continued implementation in order to foster interoperability with
older/existing implementations.
|
OBSOLETE
OBSOLETE means the definition is obsolete and SHOULD NOT be implemented
and/or can be removed from implementations.
|
Modifier and Type | Method and Description |
---|---|
static Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status CURRENT
public static final Status DEPRECATED
public static final Status OBSOLETE
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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.