public enum DeviateKind extends Enum<DeviateKind>
Enum Constant and Description |
---|
ADD |
DELETE |
NOT_SUPPORTED |
REPLACE |
Modifier and Type | Method and Description |
---|---|
String |
getKeyword()
Returns the YANG keyword corresponding to this object.
|
static DeviateKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviateKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviateKind NOT_SUPPORTED
public static final DeviateKind ADD
public static final DeviateKind REPLACE
public static final DeviateKind DELETE
public static DeviateKind[] values()
for (DeviateKind c : DeviateKind.values()) System.out.println(c);
public static DeviateKind 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 getKeyword()
Copyright © 2019 OpenDaylight. All rights reserved.