Package com.dnanexus

Enum IOClass

    • 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 name
        NullPointerException - if the argument is null