de.postfuse.ui
Enum NodeType
java.lang.Object
java.lang.Enum<NodeType>
de.postfuse.ui.NodeType
- All Implemented Interfaces:
- Serializable, Comparable<NodeType>
public enum NodeType
- extends Enum<NodeType>
The node type defines, if the node is a start and/or end node.
- Author:
- Peter
NORMAL
public static final NodeType NORMAL
START
public static final NodeType START
END
public static final NodeType END
START_AND_END
public static final NodeType START_AND_END
values
public static final NodeType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(NodeType c : NodeType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static NodeType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
getInt
public int getInt()
setInt
public void setInt(int type)
fromInt
public static NodeType fromInt(int type)