Enum ParseType

    • Enum Constant Detail

      • DATASET

        public static final ParseType DATASET
      • JOB_FILE

        public static final ParseType JOB_FILE
      • MEMBER

        public static final ParseType MEMBER
      • MVS_CONSOLE

        public static final ParseType MVS_CONSOLE
      • TSO_CONSOLE

        public static final ParseType TSO_CONSOLE
      • TSO_STOP

        public static final ParseType TSO_STOP
      • UNIX_FILE

        public static final ParseType UNIX_FILE
      • UNIX_ZFS

        public static final ParseType UNIX_ZFS
      • ZOS_LOG_ITEM

        public static final ParseType ZOS_LOG_ITEM
      • ZOS_LOG_REPLY

        public static final ParseType ZOS_LOG_REPLY
      • ZOSMF_SYSTEMS

        public static final ParseType ZOSMF_SYSTEMS
      • ZOSMF_INFO

        public static final ParseType ZOSMF_INFO
    • 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