public enum PropertyOwner extends java.lang.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 |
---|---|
java.lang.String |
toString() |
static PropertyOwner |
valueOf(java.lang.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(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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<PropertyOwner>