Class JavaParams

Object
org.apache.spark.ml.param.JavaParams
All Implemented Interfaces:
Serializable, Params, Identifiable, scala.Serializable

public abstract class JavaParams extends Object implements Params
Java-friendly wrapper for Params. Java developers who need to extend Params should use this class instead. If you need to extend an abstract class which already extends Params, then that abstract class should be Java-friendly as well.
See Also:
  • Constructor Details

    • JavaParams

      public JavaParams()
  • Method Details

    • params

      public Param<?>[] params()
      Description copied from interface: Params
      Returns all params sorted by their names. The default implementation uses Java reflection to list all public methods that have no arguments and return Param.

      Specified by:
      params in interface Params
      Returns:
      (undocumented)