org.utgenome.shell
Enum Import.FileType
java.lang.Object
java.lang.Enum<Import.FileType>
org.utgenome.shell.Import.FileType
- All Implemented Interfaces:
- Serializable, Comparable<Import.FileType>
- Enclosing class:
- Import
public static enum Import.FileType
- extends Enum<Import.FileType>
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. |
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
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.