public enum IOClass extends Enum<IOClass>
Enum Constant and Description |
---|
APPLET |
ARRAY_OF_APPLETS |
ARRAY_OF_BOOLEANS |
ARRAY_OF_FILES |
ARRAY_OF_FLOATS |
ARRAY_OF_INTS |
ARRAY_OF_RECORDS |
ARRAY_OF_STRINGS |
ARRAY_OF_WORKFLOWS |
BOOLEAN |
FILE |
FLOAT |
HASH |
INT |
RECORD |
STRING |
WORKFLOW |
Modifier and Type | Method and Description |
---|---|
static IOClass |
valueOf(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.
|
public static final IOClass RECORD
public static final IOClass FILE
public static final IOClass APPLET
public static final IOClass WORKFLOW
public static final IOClass INT
public static final IOClass FLOAT
public static final IOClass STRING
public static final IOClass BOOLEAN
public static final IOClass HASH
public static final IOClass ARRAY_OF_RECORDS
public static final IOClass ARRAY_OF_FILES
public static final IOClass ARRAY_OF_APPLETS
public static final IOClass ARRAY_OF_WORKFLOWS
public static final IOClass ARRAY_OF_INTS
public static final IOClass ARRAY_OF_FLOATS
public static final IOClass ARRAY_OF_STRINGS
public static final IOClass ARRAY_OF_BOOLEANS
public static IOClass[] values()
for (IOClass c : IOClass.values()) System.out.println(c);
public static IOClass valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All Rights Reserved.