public enum EventTopologyType extends java.lang.Enum<EventTopologyType>
Most structures in JPhyloIO allow to have nested data and therefore trigger a start and later an
end event. Some exceptions that are not allowed to have nested data (not even metadata) will have
the type SOLE.
| Enum Constant and Description |
|---|
END
Indicates that this event marks the end of a structure (e.g.
|
SOLE
Indicates that this event is not separated into a start and an end event and no nested
data will follow.
|
START
Indicates that this event marks the start of a sequence of subevents of this event
(e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static EventTopologyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventTopologyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTopologyType START
public static final EventTopologyType END
public static final EventTopologyType SOLE
public static EventTopologyType[] values()
for (EventTopologyType c : EventTopologyType.values()) System.out.println(c);
public static EventTopologyType 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