phylonet.network.characterization
Enum NetworkCharacterizationMeasure

java.lang.Object
  extended by java.lang.Enum<NetworkCharacterizationMeasure>
      extended by phylonet.network.characterization.NetworkCharacterizationMeasure
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NetworkCharacterizationMeasure>

public enum NetworkCharacterizationMeasure
extends java.lang.Enum<NetworkCharacterizationMeasure>


Enum Constant Summary
CLUSTER
           
TREE
           
TRI
           
UNDEFINED
           
 
Method Summary
static NetworkCharacterizationMeasure fromString(java.lang.String s)
           
 void printNameAndComputations(Network<java.lang.String> net, java.io.PrintStream ps)
           
static NetworkCharacterizationMeasure valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NetworkCharacterizationMeasure[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TREE

public static final NetworkCharacterizationMeasure TREE

TRI

public static final NetworkCharacterizationMeasure TRI

CLUSTER

public static final NetworkCharacterizationMeasure CLUSTER

UNDEFINED

public static final NetworkCharacterizationMeasure UNDEFINED
Method Detail

values

public static NetworkCharacterizationMeasure[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (NetworkCharacterizationMeasure c : NetworkCharacterizationMeasure.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static NetworkCharacterizationMeasure valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

printNameAndComputations

public void printNameAndComputations(Network<java.lang.String> net,
                                     java.io.PrintStream ps)

fromString

public static NetworkCharacterizationMeasure fromString(java.lang.String s)