|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EdgeType>
br.usp.ime.klava.segmentit.util.EdgeType
public enum EdgeType
Represents the type of an edge, depending on it's purpose.
Enum Constant Summary | |
---|---|
DEFAULT
Links basins that belongs to the same ROI. |
|
EXTERNAL
Links basins that belongs to distinct ROIs |
|
INTERNAL_LIMITED_REGION
Links basins that belongs to distinct ROIs of the selected region of a hierarchy. |
Method Summary | |
---|---|
static EdgeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EdgeType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EdgeType DEFAULT
public static final EdgeType INTERNAL_LIMITED_REGION
public static final EdgeType EXTERNAL
Method Detail |
---|
public static EdgeType[] values()
for (EdgeType c : EdgeType.values()) System.out.println(c);
public static EdgeType 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |