|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NodeFactory.NodeType>
org.knime.core.node.NodeFactory.NodeType
public static enum NodeFactory.NodeType
Enum for all node types.
Enum Constant Summary | |
---|---|
Learner
A learning node. |
|
LoopEnd
End node of a loop. |
|
LoopStart
Start node of a loop. |
|
Manipulator
A data manipulating node. |
|
Meta
A meta node. |
|
Other
All other nodes. |
|
Predictor
A predicting node. |
|
Sink
A data consuming node. |
|
Source
A data producing node. |
|
Unknown
If not specified. |
|
Visualizer
A visualizing node. |
Method Summary | |
---|---|
static NodeFactory.NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NodeFactory.NodeType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 NodeFactory.NodeType Source
public static final NodeFactory.NodeType Sink
public static final NodeFactory.NodeType Learner
public static final NodeFactory.NodeType Predictor
public static final NodeFactory.NodeType Manipulator
public static final NodeFactory.NodeType Visualizer
public static final NodeFactory.NodeType Meta
public static final NodeFactory.NodeType LoopStart
public static final NodeFactory.NodeType LoopEnd
public static final NodeFactory.NodeType Other
public static final NodeFactory.NodeType Unknown
Method Detail |
---|
public static NodeFactory.NodeType[] values()
for (NodeFactory.NodeType c : NodeFactory.NodeType.values()) System.out.println(c);
public static NodeFactory.NodeType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |