public enum PropertyOwner extends Enum<PropertyOwner>
PhyloXMLEventWriter
to give data receivers information about the data element
the contents of a meta event belong to.Enum Constant and Description |
---|
ANNOTATION
The metadata belongs to a sequence annotation.
|
CLADE
The metadata belongs to a node or edge.
|
NODE
The metadata belongs to a node.
|
OTHER
The metadata belongs to an element different from those mentioned above.
|
PARENT_BRANCH
The metadata belongs to an edge.
|
PHYLOGENY
The metadata belongs to a phylogenetic tree or network.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static PropertyOwner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyOwner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyOwner PHYLOGENY
public static final PropertyOwner CLADE
public static final PropertyOwner NODE
public static final PropertyOwner ANNOTATION
public static final PropertyOwner PARENT_BRANCH
public static final PropertyOwner OTHER
public static PropertyOwner[] values()
for (PropertyOwner c : PropertyOwner.values()) System.out.println(c);
public static PropertyOwner 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<PropertyOwner>