compbio.data.sequence
Enum Method

java.lang.Object
  extended by java.lang.Enum<Method>
      extended by compbio.data.sequence.Method
All Implemented Interfaces:
Serializable, Comparable<Method>

public enum Method
extends Enum<Method>

Enumeration listing of all the supported methods.

Author:
Agnieszka Golicz & Peter Troshin

Enum Constant Summary
ARMON
           
GERSTEIN
           
JORES
           
KABAT
           
KARLIN
           
LANDGRAF
           
MIRNY
           
NOT_LANCET
           
SANDER
           
SCHNEIDER
           
SHENKIN
           
SMERFS
           
TAYLOR_GAPS
           
TAYLOR_NO_GAPS
           
THOMPSON
           
VALDAR
           
WILLIAMSON
           
ZVELIBIL
           
 
Method Summary
static Method getMethod(String meth)
           
static Method valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Method[] 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

KABAT

public static final Method KABAT

JORES

public static final Method JORES

SCHNEIDER

public static final Method SCHNEIDER

SHENKIN

public static final Method SHENKIN

GERSTEIN

public static final Method GERSTEIN

TAYLOR_GAPS

public static final Method TAYLOR_GAPS

TAYLOR_NO_GAPS

public static final Method TAYLOR_NO_GAPS

ZVELIBIL

public static final Method ZVELIBIL

KARLIN

public static final Method KARLIN

ARMON

public static final Method ARMON

THOMPSON

public static final Method THOMPSON

NOT_LANCET

public static final Method NOT_LANCET

MIRNY

public static final Method MIRNY

WILLIAMSON

public static final Method WILLIAMSON

LANDGRAF

public static final Method LANDGRAF

SANDER

public static final Method SANDER

VALDAR

public static final Method VALDAR

SMERFS

public static final Method SMERFS
Method Detail

values

public static Method[] 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 (Method c : Method.values())
    System.out.println(c);

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

valueOf

public static Method valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getMethod

public static Method getMethod(String meth)