abstract class Escaping extends AnyRef
escapes all non-legal characters according to some rules
- Source
- Escape.scala
- Alphabetic
- By Inheritance
- Escaping
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Escaping()
Type Members
- case class Error(msg: String) extends Exception with Product with Serializable
Concrete 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
- def apply(s: String): String
- def apply(c: Char): String
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
check: Unit
check invariant that guarantees invertibility of escaping
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
lazy val
escapedChars: List[Char]
characters that are escaped because of an escape rule
characters that are escaped because of an escape rule
- Attributes
- protected
-
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()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
legal(c: Char): Boolean
characters that are not escaped default: ASCII 32-126 without the plain/custom escapes; override as needed
-
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
- def unapply(s: String): String
-
def
useCustomEscape: List[(Char, String)]
characters that are escaped by a custom string default: n/t/s for newline/tab/space; override as needed
-
def
usePlainEscape: List[Char]
characters that are escaped by escape-char + themselves default: only escapeChar; override as needed
-
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()