Enum ParseType

    • Enum Constant Detail

      • DATASET

        public static final ParseType DATASET
        dataset type
      • JOB

        public static final ParseType JOB
        job type
      • JOB_FILE

        public static final ParseType JOB_FILE
        job file type
      • MEMBER

        public static final ParseType MEMBER
        member type
      • MVS_CONSOLE

        public static final ParseType MVS_CONSOLE
        mvs console type
      • PROPS

        public static final ParseType PROPS
        properties type
      • TSO_CONSOLE

        public static final ParseType TSO_CONSOLE
        tso console type
      • TSO_STOP

        public static final ParseType TSO_STOP
        tso stop type
      • UNIX_FILE

        public static final ParseType UNIX_FILE
        unix file type
      • UNIX_ZFS

        public static final ParseType UNIX_ZFS
        unix zfs type
      • ZOS_LOG_ITEM

        public static final ParseType ZOS_LOG_ITEM
        zos log item type
      • ZOS_LOG_REPLY

        public static final ParseType ZOS_LOG_REPLY
        zos log reply item
      • ZOSMF_SYSTEMS

        public static final ParseType ZOSMF_SYSTEMS
        zosmf systems type
      • ZOSMF_INFO

        public static final ParseType ZOSMF_INFO
        zosmf info type
    • Method Detail

      • values

        public static ParseType[] 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 (ParseType c : ParseType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ParseType 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