Package weka.core

Class Check

    • Constructor Summary

      Constructors 
      Constructor Description
      Check()  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract void doTests()
      Begin the tests, reporting results to System.out
      boolean getDebug()
      Get whether debugging is turned on
      java.lang.String[] getOptions()
      Gets the current settings of the CheckClassifier.
      boolean getSilent()
      Get whether silent mode is turned on
      java.util.Enumeration listOptions()
      Returns an enumeration describing the available options.
      void setDebug​(boolean debug)
      Set debugging mode
      void setOptions​(java.lang.String[] options)
      Parses a given list of options.
      void setSilent​(boolean value)
      Set slient mode, i.e., no output at all to stdout
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Check

        public Check()
    • Method Detail

      • listOptions

        public java.util.Enumeration listOptions()
        Returns an enumeration describing the available options.
        Specified by:
        listOptions in interface OptionHandler
        Returns:
        an enumeration of all the available options.
      • setOptions

        public void setOptions​(java.lang.String[] options)
                        throws java.lang.Exception
        Parses a given list of options.
        Specified by:
        setOptions in interface OptionHandler
        Parameters:
        options - the list of options as an array of strings
        Throws:
        java.lang.Exception - if an option is not supported
      • getOptions

        public java.lang.String[] getOptions()
        Gets the current settings of the CheckClassifier.
        Specified by:
        getOptions in interface OptionHandler
        Returns:
        an array of strings suitable for passing to setOptions
      • doTests

        public abstract void doTests()
        Begin the tests, reporting results to System.out
      • setDebug

        public void setDebug​(boolean debug)
        Set debugging mode
        Parameters:
        debug - true if debug output should be printed
      • getDebug

        public boolean getDebug()
        Get whether debugging is turned on
        Returns:
        true if debugging output is on
      • setSilent

        public void setSilent​(boolean value)
        Set slient mode, i.e., no output at all to stdout
        Parameters:
        value - whether silent mode is active or not
      • getSilent

        public boolean getSilent()
        Get whether silent mode is turned on
        Returns:
        true if silent mode is on