Class Launcher

    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ResultCode main​(java.io.OutputStream outStream, java.io.OutputStream errStream, java.lang.String... args)
      Parses the command-line arguments and performs any appropriate processing for this program.
      static void main​(java.lang.String... args)
      Parses the command-line arguments and performs any appropriate processing for this program.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • main

        public static void main​(java.lang.String... args)
        Parses the command-line arguments and performs any appropriate processing for this program.
        Parameters:
        args - The command-line arguments provided to this program.
      • main

        public static ResultCode main​(java.io.OutputStream outStream,
                                      java.io.OutputStream errStream,
                                      java.lang.String... args)
        Parses the command-line arguments and performs any appropriate processing for this program.
        Parameters:
        outStream - The output stream to which standard out should be written. It may be null if output should be suppressed.
        errStream - The output stream to which standard error should be written. It may be null if error messages should be suppressed.
        args - The command-line arguments provided to this program.
        Returns:
        A result code with information about the status of processing.