public static enum IntervalList.IntervalType extends java.lang.Enum<IntervalList.IntervalType>
Enum Constant and Description |
---|
COALESCENT
Denotes an interval after which a coalescent event is observed
(i.e.
|
MIGRATION
Denotes an interval at the end of which a migration event occurs.
|
NOTHING
Denotes an interval at the end of which nothing is
observed (i.e.
|
SAMPLE
Denotes an interval at the end of which a new sample addition is
observed (i.e.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static IntervalList.IntervalType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntervalList.IntervalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalList.IntervalType SAMPLE
public static final IntervalList.IntervalType COALESCENT
public static final IntervalList.IntervalType MIGRATION
public static final IntervalList.IntervalType NOTHING
public static IntervalList.IntervalType[] values()
for (IntervalList.IntervalType c : IntervalList.IntervalType.values()) System.out.println(c);
public static IntervalList.IntervalType 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<IntervalList.IntervalType>
http://code.google.com/p/jebl2/