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