org.utgenome.shell
Enum Import.FileType

java.lang.Object
  extended by java.lang.Enum<Import.FileType>
      extended by org.utgenome.shell.Import.FileType
All Implemented Interfaces:
Serializable, Comparable<Import.FileType>
Enclosing class:
Import

public static enum Import.FileType
extends Enum<Import.FileType>


Enum Constant Summary
AUTO
           
BAM
           
BED
           
CSEG
           
FASTA
           
KTAB
           
READ
           
SAM
           
SEG
           
UNKNOWN
           
WIG
           
 
Method Summary
static Import.FileType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Import.FileType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AUTO

public static final Import.FileType AUTO

READ

public static final Import.FileType READ

BED

public static final Import.FileType BED

SAM

public static final Import.FileType SAM

FASTA

public static final Import.FileType FASTA

WIG

public static final Import.FileType WIG

KTAB

public static final Import.FileType KTAB

UNKNOWN

public static final Import.FileType UNKNOWN

BAM

public static final Import.FileType BAM

SEG

public static final Import.FileType SEG

CSEG

public static final Import.FileType CSEG
Method Detail

values

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

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

valueOf

public static Import.FileType 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


Copyright © 2007-2012 utgenome.org. All Rights Reserved.