public static enum ILinkDiscovery.LinkType extends java.lang.Enum<ILinkDiscovery.LinkType>
Enum Constant and Description |
---|
DIRECT_LINK |
INVALID_LINK |
MULTIHOP_LINK |
TUNNEL |
Modifier and Type | Method and Description |
---|---|
static ILinkDiscovery.LinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ILinkDiscovery.LinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ILinkDiscovery.LinkType INVALID_LINK
public static final ILinkDiscovery.LinkType DIRECT_LINK
public static final ILinkDiscovery.LinkType MULTIHOP_LINK
public static final ILinkDiscovery.LinkType TUNNEL
public static ILinkDiscovery.LinkType[] values()
for (ILinkDiscovery.LinkType c : ILinkDiscovery.LinkType.values()) System.out.println(c);
public static ILinkDiscovery.LinkType 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