package xml
- Alphabetic
- By Inheritance
- xml
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class AnomalyDetectionBuilder extends Builder[AnomalyDetectionModel]
Builder of Anomaly Detection Model
- class AssociationBuilder extends Builder[AssociationModel]
Builder of Association model
- trait Builder[T <: Model] extends TransformationsBuilder
Base class of model builder
- class ClusteringBuilder extends Builder[ClusteringModel]
Builder of Clustering model
- trait CommonBuilder extends ExtensionHandler with UnknownElemHandler
Provides utilities to parse these common elements.
- trait ElemBuilder[T] extends AnyRef
- case class EvComment(text: String) extends XMLEvent with Product with Serializable
A comment was encountered
A comment was encountered
- text
the text of the comment
- case class EvElemEnd(pre: String, label: String) extends XMLEvent with Product with Serializable
An Element's end tag was encountered.
An Element's end tag was encountered.
- pre
prefix, if any, on the element. This is the
xsin<xs:string>foo</xs:string>.- label
the name of the element, not including the prefix
- case class EvElemStart(pre: String, label: String, attrs: XmlAttrs, scope: NamespaceBinding) extends XMLEvent with Product with Serializable
An Element's start tag was encountered.
An Element's start tag was encountered.
- pre
prefix, if any, on the element. This is the
xsin<xs:string>foo</xs:string>.- label
the name of the element, not including the prefix
- attrs
any attributes on the element
- case class EvEntityRef(entity: String) extends XMLEvent with Product with Serializable
An entity reference was encountered.
An entity reference was encountered.
- entity
the name of the entity, e.g.
gtwhen encountering the entity>
- case class EvProcInstr(target: String, text: String) extends XMLEvent with Product with Serializable
A processing instruction was encountered.
A processing instruction was encountered.
- target
the "PITarget" of the processing instruction. For the instruction
<?foo bar="baz"?>, the target would befoo- text
the remainder of the instruction. For the instruction
<?foo bar="baz"?>, the text would bebar="baz"
- case class EvText(text: String) extends XMLEvent with Product with Serializable
A text node was encountered.
A text node was encountered.
- text
the text that was found
- trait ExtensionHandler extends XmlUtils
- class GeneralRegressionBuilder extends Builder[GeneralRegressionModel]
Builder of General Regression Model
- trait GroupElemBuilder[T] extends AnyRef
- class JIteratorWrapper[A] extends Iterator[A] with Serializable
- class MiningBuilder extends Builder[MiningModel]
Builder of Mining Model
- class ModelBuilder extends TransformationsBuilder with ElemBuilder[Model]
Base builder of PMML model
- class MutableAnomalyDetectionModel extends MutableModel
- class MutableMiningModel extends MutableModel
- class NaiveBayesBuilder extends Builder[NaiveBayesModel]
Builder of Naive Bayes Model
- case class NamespaceBinding(prefix: String, uri: String, parent: NamespaceBinding) extends Product with Serializable
The class
NamespaceBindingrepresents namespace bindings and scopes. - class NearestNeighborBuilder extends Builder[NearestNeighborModel]
Builder of Nearest Neighbor model.
- class NeuralNetworkBuilder extends Builder[NeuralNetwork]
Builder of Neural Network model.
- class RegressionBuilder extends Builder[RegressionModel]
Builder of Regression model.
- class RuleSetBuilder extends Builder[RuleSetModel]
Builder of Rule Set model.
- trait SASExtensions extends ExtensionHandler
- trait SPSSExtensions extends ExtensionHandler
- class ScorecardBuilder extends Builder[Scorecard]
Builder of Scorecard model
- class SourceWrapper extends Reader
- class SupportVectorMachineBuilder extends Builder[SupportVectorMachineModel]
Builder of Support Vector Machine model
- trait TransformationsBuilder extends CommonBuilder with FieldScope with HasFieldScope with FunctionProvider
Builder of transformations
- class TreeBuilder extends Builder[TreeModel]
Builder of Tree model
- trait UnknownElemHandler extends XmlBase
- trait XMLEvent extends AnyRef
Borrow codes from scala.xml.pull, and reimplement based on javax.xml.stream.XMLEventReader
- class XMLEventReader extends Iterator[XMLEvent]
Main entry point into creating an event-based XML parser.
Main entry point into creating an event-based XML parser. Treating this as a scala.collection.Iterator will provide access to the generated events.
- case class XmlAttrs(attrs: Map[String, String]) extends Product with Serializable
- trait XmlBase extends AnyRef
- trait XmlRead[T] extends AnyRef
- trait XmlUtils extends XmlBase
- trait XmlWrite extends AnyRef
Value Members
- object AttrTags
- object Builder
- object ElemTags
Contains all XML tags defined in PMML 4.3 schema.
- case object EvDocEnd extends XMLEvent with Product with Serializable
The end of document
- object ModelBuilder extends ExtensionHandler with XmlUtils
- object ValTags
- object XmlAttrs extends Serializable
- object XmlImplicits