public enum Connectivity extends java.lang.Enum<Connectivity>
Java class for Connectivity.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Connectivity">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Undirected"/>
<enumeration value="Input"/>
<enumeration value="Output"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INPUT |
OUTPUT |
UNDIRECTED |
| Modifier and Type | Method and Description |
|---|---|
static Connectivity |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static Connectivity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Connectivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Connectivity UNDIRECTED
public static final Connectivity INPUT
public static final Connectivity OUTPUT
public static Connectivity[] values()
for (Connectivity c : Connectivity.values()) System.out.println(c);
public static Connectivity 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 nullpublic java.lang.String value()
public static Connectivity fromValue(java.lang.String v)