public static enum LinkEvent.Type extends java.lang.Enum<LinkEvent.Type>
Enum Constant and Description |
---|
LINK_ADDED
Signifies that a new link has been detected.
|
LINK_REMOVED
Signifies that a link has been removed.
|
LINK_UPDATED
Signifies that a link has been updated or changed state.
|
Modifier and Type | Method and Description |
---|---|
static LinkEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LinkEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkEvent.Type LINK_ADDED
public static final LinkEvent.Type LINK_UPDATED
public static final LinkEvent.Type LINK_REMOVED
public static LinkEvent.Type[] values()
for (LinkEvent.Type c : LinkEvent.Type.values()) System.out.println(c);
public static LinkEvent.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null