Package com.dnanexus
Enum IOClass
- java.lang.Object
-
- java.lang.Enum<IOClass>
-
- com.dnanexus.IOClass
-
- All Implemented Interfaces:
Serializable,Comparable<IOClass>
public enum IOClass extends Enum<IOClass>
The type of an input or output field of an executable.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLETARRAY_OF_APPLETSARRAY_OF_BOOLEANSARRAY_OF_FILESARRAY_OF_FLOATSARRAY_OF_INTSARRAY_OF_RECORDSARRAY_OF_STRINGSARRAY_OF_WORKFLOWSBOOLEANFILEFLOATHASHINTRECORDSTRINGWORKFLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IOClassvalueOf(String name)Returns the enum constant of this type with the specified name.static IOClass[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RECORD
public static final IOClass RECORD
-
FILE
public static final IOClass FILE
-
APPLET
public static final IOClass APPLET
-
WORKFLOW
public static final IOClass WORKFLOW
-
INT
public static final IOClass INT
-
FLOAT
public static final IOClass FLOAT
-
STRING
public static final IOClass STRING
-
BOOLEAN
public static final IOClass BOOLEAN
-
HASH
public static final IOClass HASH
-
ARRAY_OF_RECORDS
public static final IOClass ARRAY_OF_RECORDS
-
ARRAY_OF_FILES
public static final IOClass ARRAY_OF_FILES
-
ARRAY_OF_APPLETS
public static final IOClass ARRAY_OF_APPLETS
-
ARRAY_OF_WORKFLOWS
public static final IOClass ARRAY_OF_WORKFLOWS
-
ARRAY_OF_INTS
public static final IOClass ARRAY_OF_INTS
-
ARRAY_OF_FLOATS
public static final IOClass ARRAY_OF_FLOATS
-
ARRAY_OF_STRINGS
public static final IOClass ARRAY_OF_STRINGS
-
ARRAY_OF_BOOLEANS
public static final IOClass ARRAY_OF_BOOLEANS
-
-
Method Detail
-
values
public static IOClass[] 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 (IOClass c : IOClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IOClass 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 nameNullPointerException- if the argument is null
-
-