object StringFS
- Alphabetic
- By Inheritance
- StringFS
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asString(root: io.AbsolutePath, includePath: (io.RelativePath) ⇒ Boolean = _ => true, charset: Charset = StandardCharsets.UTF_8): String
Gives a string representation of a directory.
Gives a string representation of a directory.
Performs the inverse as fromString.
Example:
val layout = """ /Main.scala object A { def foo() = print("foo") } """ assert(asString(fromString(layout)) == layout)
- root
the directory to print as a string
- includePath
an optional filter function to exclude files
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fromString(layout: String, root: io.AbsolutePath = ..., charset: Charset = StandardCharsets.UTF_8): io.AbsolutePath
Creates a temporary directory with a layout matching the markup in the string.
Creates a temporary directory with a layout matching the markup in the string.
Example syntax of the expected markup in the string:
fromString(""" /build.sbt lazy val core = project /src/main/scala/core/Foo.scala package core object Foo.scala """)
Use
asStringfor the inverse, go from a temporary directory to a string.- layout
the string representing the directory layout. NOTE. Lines starting with forward slash / are always interpreted as the start of a new file entry.
- root
the temporary directory to apply the layout markup. If not provided, defaults to a fresh temporary directory.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- 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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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
- @native() @throws( ... )