Packages

package xml

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. xml
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class AnomalyDetectionBuilder extends Builder[AnomalyDetectionModel]

    Builder of Anomaly Detection Model

  2. class AssociationBuilder extends Builder[AssociationModel]

    Builder of Association model

  3. trait Builder[T <: Model] extends TransformationsBuilder

    Base class of model builder

  4. class ClusteringBuilder extends Builder[ClusteringModel]

    Builder of Clustering model

  5. trait CommonBuilder extends ExtensionHandler with UnknownElemHandler

    Provides utilities to parse these common elements.

  6. trait ElemBuilder[T] extends AnyRef
  7. 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

  8. 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 xs in <xs:string>foo</xs:string>.

    label

    the name of the element, not including the prefix

  9. 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 xs in <xs:string>foo</xs:string>.

    label

    the name of the element, not including the prefix

    attrs

    any attributes on the element

  10. 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. gt when encountering the entity >

  11. 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 be foo

    text

    the remainder of the instruction. For the instruction <?foo bar="baz"?>, the text would be bar="baz"

    See also

    http://www.w3.org/TR/REC-xml/#sec-pi

  12. 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

  13. trait ExtensionHandler extends XmlUtils
  14. class GeneralRegressionBuilder extends Builder[GeneralRegressionModel]

    Builder of General Regression Model

  15. trait GroupElemBuilder[T] extends AnyRef
  16. class JIteratorWrapper[A] extends Iterator[A] with Serializable
  17. class MiningBuilder extends Builder[MiningModel]

    Builder of Mining Model

  18. class ModelBuilder extends TransformationsBuilder with ElemBuilder[Model]

    Base builder of PMML model

  19. class MutableAnomalyDetectionModel extends MutableModel
  20. class MutableMiningModel extends MutableModel
  21. class NaiveBayesBuilder extends Builder[NaiveBayesModel]

    Builder of Naive Bayes Model

  22. case class NamespaceBinding(prefix: String, uri: String, parent: NamespaceBinding) extends Product with Serializable

    The class NamespaceBinding represents namespace bindings and scopes.

  23. class NearestNeighborBuilder extends Builder[NearestNeighborModel]

    Builder of Nearest Neighbor model.

  24. class NeuralNetworkBuilder extends Builder[NeuralNetwork]

    Builder of Neural Network model.

  25. class RegressionBuilder extends Builder[RegressionModel]

    Builder of Regression model.

  26. class RuleSetBuilder extends Builder[RuleSetModel]

    Builder of Rule Set model.

  27. trait SASExtensions extends ExtensionHandler
  28. trait SPSSExtensions extends ExtensionHandler
  29. class ScorecardBuilder extends Builder[Scorecard]

    Builder of Scorecard model

  30. class SourceWrapper extends Reader
  31. class SupportVectorMachineBuilder extends Builder[SupportVectorMachineModel]

    Builder of Support Vector Machine model

  32. trait TransformationsBuilder extends CommonBuilder with FieldScope with HasFieldScope with FunctionProvider

    Builder of transformations

  33. class TreeBuilder extends Builder[TreeModel]

    Builder of Tree model

  34. trait UnknownElemHandler extends XmlBase
  35. trait XMLEvent extends AnyRef

    Borrow codes from scala.xml.pull, and reimplement based on javax.xml.stream.XMLEventReader

  36. 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.

  37. case class XmlAttrs(attrs: Map[String, String]) extends Product with Serializable
  38. trait XmlBase extends AnyRef
  39. trait XmlRead[T] extends AnyRef
  40. trait XmlUtils extends XmlBase
  41. trait XmlWrite extends AnyRef

Value Members

  1. object AttrTags
  2. object Builder
  3. object ElemTags

    Contains all XML tags defined in PMML 4.3 schema.

  4. object ModelBuilder extends ExtensionHandler with XmlUtils
  5. object ValTags
  6. object XmlAttrs extends Serializable
  7. object XmlImplicits

Inherited from AnyRef

Inherited from Any

Ungrouped