public static enum LinkUpdate.Type extends Enum<LinkUpdate.Type>
| Enum Constant and Description |
|---|
ADD_OR_UPDATE
Represents addition or update of an existing link.
|
REMOVE
Represents removal of a link.
|
SWITCH_UPDATED
Represents update of at least one of the end-point switches.
|
| Modifier and Type | Method and Description |
|---|---|
static LinkUpdate.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkUpdate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkUpdate.Type ADD_OR_UPDATE
public static final LinkUpdate.Type REMOVE
public static final LinkUpdate.Type SWITCH_UPDATED
public static LinkUpdate.Type[] values()
for (LinkUpdate.Type c : LinkUpdate.Type.values()) System.out.println(c);
public static LinkUpdate.Type 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 © 2014. All Rights Reserved.