TransformationsBuilder
trait TransformationsBuilder extends CommonBuilder with FieldScope with HasFieldScope with FunctionProvider
Builder of transformations
trait FunctionProvider
trait HasFieldScope
trait FieldScope
trait HasField
trait CommonBuilder
trait UnknownElemHandler
trait ExtensionHandler
trait XmlUtils
trait XmlBase
class Object
trait Matchable
class Any
trait Builder[T]
class AnomalyDetectionBuilder
class AssociationBuilder
class ClusteringBuilder
class GeneralRegressionBuilder
class MiningBuilder
class NaiveBayesBuilder
class NearestNeighborBuilder
class NeuralNetworkBuilder
class RegressionBuilder
class RuleSetBuilder
class ScorecardBuilder
class TreeBuilder
class ModelBuilder
Value members
Concrete methods
Inherited methods
?????? can be used for marking methods that never invoked
?????? can be used for marking methods that never invoked
- Inherited from:
- CommonBuilder
def makeElem[A, B](reader: XMLEventReader, parent: String, child1: String, builder1: ElemBuilder[A], child2: String, builder2: ElemBuilder[B]): (Option[A], Option[B])
- Inherited from:
- XmlUtils
def makeElem[T](reader: XMLEventReader, parent: String, child: String, builder: ElemBuilder[T]): Option[T]
- Inherited from:
- XmlUtils
def makeElems[T : ClassTag](reader: XMLEventReader, parent: String, children: Set[String], builder: GroupElemBuilder[T]): Array[T]
- Inherited from:
- XmlUtils
def makeElems[A : ClassTag, B : ClassTag](reader: XMLEventReader, parent: String, child1: String, builder1: ElemBuilder[A], child2: String, builder2: ElemBuilder[B]): (Array[A], Array[B])
- Inherited from:
- XmlUtils
def makeElems[T : ClassTag](reader: XMLEventReader, parent: String, child: String, builder: ElemBuilder[T], sizeHint: Option[Int]): Array[T]
- Inherited from:
- XmlUtils
def traverseElems(reader: XMLEventReader, parent: String, f: PartialFunction[XMLEvent, Any], handleText: Boolean, handleEnd: Boolean, handleEntityRef: Boolean, handleExtension: Boolean): Any
- Inherited from:
- XmlUtils
Verifies if the input sting values is valid for the specified field, here, we need to check if the field is null, because this method is always called to verify the target field that could be absent for any model, for example the child model under the Mining Model.
Verifies if the input sting values is valid for the specified field, here, we need to check if the field is null, because this method is always called to verify the target field that could be absent for any model, for example the child model under the Mining Model.
- Inherited from:
- CommonBuilder