class IntParam extends Param[Int]
- Alphabetic
- By Inheritance
- IntParam
- Param
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new IntParam(parent: Identifiable, name: String, doc: String)
- new IntParam(parent: Identifiable, name: String, doc: String, isValid: (Int) ⇒ Boolean)
- new IntParam(parent: String, name: String, doc: String)
- new IntParam(parent: String, name: String, doc: String, isValid: (Int) ⇒ Boolean)
Value Members
-
def
->(value: Int): ParamPair[Int]
Creates a param pair with the given value (for Scala).
Creates a param pair with the given value (for Scala).
- Definition Classes
- Param
-
val
doc: String
- Definition Classes
- Param
-
final
def
equals(obj: Any): Boolean
- Definition Classes
- Param → AnyRef → Any
-
final
def
hashCode(): Int
- Definition Classes
- Param → AnyRef → Any
-
val
isValid: (Int) ⇒ Boolean
- Definition Classes
- Param
-
def
jsonDecode(json: String): Int
Decodes a param value from JSON.
-
def
jsonEncode(value: Int): String
Encodes a param value into JSON, which can be decoded by
jsonDecode()
. -
val
name: String
- Definition Classes
- Param
-
val
parent: String
- Definition Classes
- Param
-
final
def
toString(): String
- Definition Classes
- Param → AnyRef → Any
-
def
w(value: Int): ParamPair[Int]
Creates a param pair with the given value (for Java).