public enum TreeNodeTypes extends Enum<TreeNodeTypes>
| Enum Constant and Description |
|---|
INCOMING_MESSAGE |
OUTGOING_MESSAGE |
SITUATION_INSTANCE |
STEP_INSTANCE |
TC_CONTEXT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TreeNodeTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeNodeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeNodeTypes TC_CONTEXT
public static final TreeNodeTypes SITUATION_INSTANCE
public static final TreeNodeTypes STEP_INSTANCE
public static final TreeNodeTypes INCOMING_MESSAGE
public static final TreeNodeTypes OUTGOING_MESSAGE
public static TreeNodeTypes[] values()
for (TreeNodeTypes c : TreeNodeTypes.values()) System.out.println(c);
public static TreeNodeTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<TreeNodeTypes>Copyright © 2025. All rights reserved.