case class InputTree[F[_]](textInputs: Seq[TextInput[F]] = Nil, binaryInputs: Seq[BinaryInput[F]] = Nil, parsedResults: Seq[ParserResult] = Nil, providedPaths: Seq[StaticDocument] = Nil, sourcePaths: Seq[String] = Nil) extends Product with Serializable
A (virtual) tree of input documents, either obtained from scanning a directory recursively or constructed programmatically (or a mix of both).
Even though the documents are specified as a flat sequence, they logically form a tree based on their virtual path.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- InputTree
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new InputTree(textInputs: Seq[TextInput[F]] = Nil, binaryInputs: Seq[BinaryInput[F]] = Nil, parsedResults: Seq[ParserResult] = Nil, providedPaths: Seq[StaticDocument] = Nil, sourcePaths: Seq[String] = Nil)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(providedPath: StaticDocument): InputTree[F]
- def +(parsedResult: ParserResult): InputTree[F]
- def +(binaryInput: BinaryInput[F]): InputTree[F]
- def +(textInput: TextInput[F]): InputTree[F]
-
def
++(other: InputTree[F]): InputTree[F]
Merges the inputs of two collections.
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
lazy val
allPaths: Seq[Path]
A collection of all paths in this input tree, which may contain duplicates.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val binaryInputs: Seq[BinaryInput[F]]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val parsedResults: Seq[ParserResult]
- val providedPaths: Seq[StaticDocument]
- val sourcePaths: Seq[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val textInputs: Seq[TextInput[F]]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()