Github user hhbyyh commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19599#discussion_r156772807
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/param/params.scala ---
    @@ -435,6 +435,43 @@ class BooleanParam(parent: String, name: String, doc: 
String) // No need for isV
       }
     }
     
    +/**
    + * :: DeveloperApi ::
    + * Specialized version of `Param[String]` for Java.
    + */
    +@DeveloperApi
    +class StringParam(parent: Params, name: String, doc: String, isValid: 
String => Boolean)
    +  extends Param[String](parent, name, doc, isValid) {
    +
    +  private var options: Option[Array[String]] = None
    +
    +  def this(parent: Params, name: String, doc: String) =
    +    this(parent, name, doc, ParamValidators.alwaysTrue)
    +
    +  /** construct a StringParam with limited options (case-insensitive) */
    +  def this(parent: Params, name: String, doc: String, options: 
Array[String]) = {
    +    this(parent, name, doc + s" Supported options (case-insensitive): 
${options.mkString(", ")}.",
    --- End diff --
    
    I see. We have embedded the test into `checkParams` but that only checks 
the legal cases. 
    I'll add a unit test for illegal cases, and we can check the doc and 
exception message.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to