sjsonnew

Unbuilder

class Unbuilder[J] extends AnyRef

Builder is an mutable structure to write JSON into.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Unbuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Unbuilder(facade: Facade[J])

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def beginArray(js: J): Int

    Begin reading JSON array.

    Begin reading JSON array. Returns the size. Call nextElement n-times, and then call endArray.

  8. def beginObject(js: J): Int

    Begin reading JSON object.

    Begin reading JSON object. Returns the size. Call nextField n-times, and then call endObject.

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def endArray(): Unit

    End reading JSON array.

    End reading JSON array. Returns the size.

  11. def endObject(): Unit

    End reading JSON object.

    End reading JSON object. Returns the size.

  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  16. def hasNextField: Boolean

  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. def isInObject: Boolean

  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def isJnull(js: J): Boolean

    Check if js is null

  21. def isObject(js: J): Boolean

    Check if js is null

  22. def lookupField(name: String): Option[J]

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

    Definition Classes
    AnyRef
  24. def nextElement: J

  25. def nextField(): (String, J)

  26. def nextFieldWithJString(): (J, J)

  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. def readBigDecimal(js: J): BigDecimal

    Read BigDecimal value to the current context.

  30. def readBoolean(js: J): Boolean

    Read Boolean value to the current context.

  31. def readDouble(js: J): Double

    Read Double value to the current context.

  32. def readFloat(js: J): Float

    Read Float value to the current context.

  33. def readInt(js: J): Int

    Read Int value to the current context.

  34. def readLong(js: J): Long

    Read Long value to the current context.

  35. def readString(js: J): String

    Read String value to the current context.

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

    Definition Classes
    AnyRef
  37. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped