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