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