com.rojoma.json.util

WrappedCharArray

object WrappedCharArray extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. WrappedCharArray
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def apply (chars: CharBuffer): WrappedCharArray

    Convert a CharBuffer into a WrappedCharArray.

    Convert a CharBuffer into a WrappedCharArray. If the CharBuffer has an accessible backing array, this will involve no copying of character data and so changes to that array will be reflected in the resulting WrappedCharArray. Whether or not there is a backing array, after this call the CharBuffer has been marked as fully consumed.

  7. def apply (chars: String): WrappedCharArray

    Convert a String into a WrappedCharArray.

    Convert a String into a WrappedCharArray. If canConvertFromStringWithoutCopying is true, this will involve no copying of character data.

  8. def apply (chars: Array[Char]): WrappedCharArray

    Convert an entire array into a WrappedCharArray.

    Convert an entire array into a WrappedCharArray. The new object will be backed by the array, and so changes to the array's contents will be reflected in the resulting WrappedCharArray.

  9. def apply (chars: Array[Char], offset: Int, count: Int): WrappedCharArray

    Convert a slice of an array into a WrappedCharArray.

    Convert a slice of an array into a WrappedCharArray. The new object will be backed by the array, and so changes to the array's contents will be reflected in the resulting WrappedCharArray.

  10. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  11. val canConvertBackToStringWithoutCopying : Boolean

    Indicates whether a WrappedCharArray that originally came from a String can avoid copying in its toString method.

  12. val canConvertFromStringWithoutCopying : Boolean

    Indicates whether apply(String) can avoid copying.

  13. val canConvertReadOnlyHeapCharBufferWithoutCopying : Boolean

    Indicates whether apply(CharBuffer) can avoid copying read-only array-backed char buffers.

  14. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. val empty : WrappedCharArray

  16. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  17. def equals (arg0: Any): Boolean

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  19. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  20. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  21. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  22. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  23. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  24. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  25. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  26. def toString (): String

    Definition Classes
    AnyRef → Any
  27. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any