abstract class BasicTransformer extends (Node) ⇒ Node
A class for XML transformations.
- Version
1.0
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- BasicTransformer
- Function1
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new BasicTransformer()
Value Members
-
def
andThen[A](g: (Node) ⇒ A): (Node) ⇒ A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
apply(n: Node): Node
- Definition Classes
- BasicTransformer → Function1
-
def
compose[A](g: (A) ⇒ Node): (A) ⇒ Node
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any
- def transform(n: Node): Seq[Node]
-
def
transform(ns: Seq[Node]): Seq[Node]
Call transform(Node) to each node in ns, yield ns if nothing changes, otherwise a new sequence of concatenated results.
-
def
transform(it: Iterator[Node], nb: NodeBuffer): Seq[Node]
Call transform(Node) for each node in ns, append results to NodeBuffer.