class JSON::Builder

Overview

A JSON builder generates valid JSON.

A JSON::Error is raised if attempting to generate an invalid JSON (for example, if invoking #end_array without a matching #start_array, or trying to use a non-string value as an object's field name).

Defined in:

json/builder.cr

Class Method Summary

Instance Method Summary

Instance methods inherited from class Reference

==(other : self)
==(other)
==
, dup dup, hash hash, inspect(io : IO) : Nil inspect, object_id : UInt64 object_id, pretty_print(pp) : Nil pretty_print, same?(other : Reference)
same?(other : Nil)
same?
, to_s(io : IO) : Nil to_s

Class methods inherited from class Reference

new new

Instance methods inherited from class Object

!=(other) !=, !~(other) !~, ==(other) ==, ===(other : JSON::Any)
===(other : YAML::Any)
===(other)
===
, =~(other) =~, class class, dup dup, hash hash, inspect(io : IO)
inspect
inspect
, itself itself, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, tap(&block) tap, to_json(io : IO)
to_json
to_json
, to_pretty_json(indent : String = " ")
to_pretty_json(io : IO, indent : String = " ")
to_pretty_json
, to_s
to_s(io : IO)
to_s
, to_yaml(io : IO)
to_yaml
to_yaml
, try(&block) try

Class methods inherited from class Object

from_json(string_or_io, root : String) : self
from_json(string_or_io) : self
from_json
, from_yaml(string_or_io) : self from_yaml

Class Method Detail

def self.new(io : IO) #

Creates a JSON::Builder that will write to the given IO.


[View source]

Instance Method Detail

def array(&block) #

Writes the start of an array, invokes the block, and the writes the end of it.


[View source]
def bool(value : Bool) #

Writes a boolean value.


[View source]
def document(&block) #

[View source]
def end_array #

Writes the end of an array.


[View source]
def end_document : Nil #

Signals the end of a JSON document.


[View source]
def end_object #

Writes the end of an object.


[View source]
def field(name, value) #

Writes an object's field and value. The field's name is first converted to a String by invoking to_s on it. The field's value can only be a #scalar.


[View source]
def field(name, &block) #

Writes an object's field and then invokes the block. This is equivalent of invoking #string(value) and then invoking the block.


[View source]
def flush #

Flushes the underlying IO.


[View source]
def indent=(string : String) #

Sets the indent string.


[View source]
def indent=(level : Int) #

Sets the indent level (number of spaces).


[View source]
def null #

Writes a #null value.


[View source]
def number(number : Float) #

Writes a float.


[View source]
def number(number : Int) #

Writes an integer.


[View source]
def object(&block) #

Writes the start of an object, invokes the block, and the writes the end of it.


[View source]
def raw(string : String) #

Writes a raw value, considered a scalar, directly into the IO without processing. This is the only method that might lead to invalid JSON being generated, so you must be sure that string contains a valid JSON string.


[View source]
def scalar(value : Nil) #

Writes a scalar value.


[View source]
def scalar(value : Bool) #

Writes a scalar value.


[View source]
def scalar(value : Int | Float) #

Writes a scalar value.


[View source]
def scalar(value : String) #

Writes a scalar value.


[View source]
def start_array #

Writes the start of an array.


[View source]
def start_document #

Starts a document.


[View source]
def start_object #

Writes the start of an object.


[View source]
def string(value) #

Writes a string. The given value is first converted to a String by invoking to_s on it.

This method can also be used to write the name of an object field.


[View source]