Class

org.fusesource.scalamd

StringEx

Related Doc: package scalamd

Permalink

class StringEx extends AnyRef

A simple wrapper over StringBuilder with utility methods.

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

Instance Constructors

  1. new StringEx(source: CharSequence)

    Permalink
  2. new StringEx(text: StringBuilder)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def append(s: CharSequence): StringEx.this.type

    Permalink

    Appends the specified character sequence.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def length: Int

    Permalink

    Provides the length of the underlying buffer.

  14. def matcher(pattern: Pattern): Matcher

    Permalink

    Creates a Matcher from specified pattern.

  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def outdent(): StringEx.this.type

    Permalink

    Removes at most 4 leading spaces at the beginning of every line.

  19. def prepend(s: CharSequence): StringEx.this.type

    Permalink

    Prepends the specified character sequence.

  20. def replaceAll(pattern: Pattern, replacement: CharSequence, literally: Boolean = true): StringEx.this.type

    Permalink
  21. def replaceAll(string: String, replacement: CharSequence): StringEx.this.type

    Permalink

    Replaces all occurences of specified string with specified replacement without using regular expressions.

  22. def replaceAll(pattern: Pattern, replacementFunction: (Matcher) ⇒ CharSequence): StringEx.this.type

    Permalink

    Creates a Matcher using specified Pattern and applies replacements literally (without interpreting $1, $2, etc.) by calling specified replacementFunction on each match.

  23. def replaceAllFunc(pattern: Pattern, replacementFunction: (Matcher) ⇒ CharSequence, literally: Boolean = true): StringEx.this.type

    Permalink
  24. def subSequence(start: Int, end: Int): CharSequence

    Permalink

    Extracts the sub-sequence from underlying buffer.

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. var text: StringBuilder

    Permalink
    Attributes
    protected
  27. def toString(): String

    Permalink

    Emits the content of underlying buffer.

    Emits the content of underlying buffer.

    Definition Classes
    StringEx → AnyRef → Any
  28. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped