public enum ServiceNumber extends Enum<ServiceNumber> implements org.opendaylight.yangtools.yang.binding.Enumeration
| Enum Constant and Description |
|---|
ControlledLoad |
Guaranteed |
| Modifier and Type | Method and Description |
|---|---|
static Optional<ServiceNumber> |
forName(String name)
Return the enumeration member whose
getName() matches specified value. |
static ServiceNumber |
forValue(int intValue)
Return the enumeration member whose
getIntValue() matches specified value. |
int |
getIntValue() |
String |
getName() |
static ServiceNumber |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceNumber[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceNumber Guaranteed
public static final ServiceNumber ControlledLoad
public static ServiceNumber[] values()
for (ServiceNumber c : ServiceNumber.values()) System.out.println(c);
public static ServiceNumber 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 String getName()
getName in interface org.opendaylight.yangtools.yang.binding.Enumerationpublic int getIntValue()
getIntValue in interface org.opendaylight.yangtools.yang.binding.Enumerationpublic static Optional<ServiceNumber> forName(String name)
getName() matches specified value.name - YANG assigned nameNullPointerException - if name is nullpublic static ServiceNumber forValue(int intValue)
getIntValue() matches specified value.intValue - integer valueCopyright © 2020 OpenDaylight. All rights reserved.