jebl.evolution.io
public static enum DistanceMatrixImporter.Triangle extends java.lang.Enum<DistanceMatrixImporter.Triangle>
Modifier and Type | Method and Description |
---|---|
static DistanceMatrixImporter.Triangle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistanceMatrixImporter.Triangle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistanceMatrixImporter.Triangle LOWER
public static final DistanceMatrixImporter.Triangle UPPER
public static final DistanceMatrixImporter.Triangle BOTH
public static DistanceMatrixImporter.Triangle[] values()
for (DistanceMatrixImporter.Triangle c : DistanceMatrixImporter.Triangle.values()) System.out.println(c);
public static DistanceMatrixImporter.Triangle 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 nullhttp://code.google.com/p/jebl2/