Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > jsonライブラリ > JSON::Stateクラス
クラスの継承リスト: JSON::State
< Object
< Kernel
< BasicObject
aliases: JSON::Ext::Generator::State
Ruby オブジェクトから JSON 形式の文字列を生成する間、 JSON 形式の文字列を生成するための設定を保持しておくために使用するクラスです。
from_state(options) -> JSON::State
[permalink][rdoc]与えられた options によって生成した JSON::State のインスタンスを返します。
new(options = {}) -> JSON::State
[permalink][rdoc]自身を初期化します。
インデントに使用する文字列を指定します。デフォルトは空文字列です。
JSON 形式の文字列のトークン間に挿入する文字列を指定します。デフォルトは空文字列です。
JSON 形式の文字列中で JavaScript のオブジェクトを表す部分にある ':' の 前に挿入する文字列をセットします。デフォルトは空文字列です。
JSON 形式の文字列中に現れる JavaScript のオブジェクトの行末に挿入する文字列を指定します。 デフォルトは空文字列です。
JSON 形式の文字列中に現れる JavaScript の配列の行末に挿入する文字列を指定します。 デフォルトは空文字列です。
真を指定した場合、生成するオブジェクトの循環をチェックします。 この動作がデフォルトです。
真を指定した場合、JSON::NaN, JSON::Infinity, JSON::MinusInfinity を生成することを許すようになります。 偽を指定した場合、これらの値を生成しようとすると例外が発生します。 デフォルトは偽です。
真を指定した場合、ASCII 文字列のみを用いて JSON 形式の文字列を生成します。 デフォルトは偽です。
sets the initial length of the generator's internal buffer.
self[name] -> object
[permalink][rdoc]Return the value returned by method name.
self[name] = value
[permalink][rdoc]Set the attribute name to value.
allow_nan? -> bool
[permalink][rdoc]NaN, Infinity, -Infinity を生成できる場合、真を返します。 そうでない場合は偽を返します。
[SEE_ALSO] [RFC4627]
array_nl -> String
[permalink][rdoc]JSON の配列の後に出力する文字列を返します。
array_nl=(str)
[permalink][rdoc]JSON の配列の後に出力する文字列をセットします。
ascii_only? -> bool
[permalink][rdoc]ASCII 文字列のみを用いて JSON 形式の文字列を生成する場合に真を返します。 そうでない場合に偽を返します。
buffer_initial_length -> Integer
[permalink][rdoc]This integer returns the current initial length of the buffer.
buffer_initial_length=(length)
[permalink][rdoc]This sets the initial length of the buffer to length, if length > 0, otherwise its value isn't changed.
check_circular? -> bool
[permalink][rdoc]循環参照のチェックを行う場合は、真を返します。 そうでない場合は偽を返します。
configure(options = {}) -> self
[permalink][rdoc]merge(options = {}) -> self
与えられたハッシュで自身を設定します。
オプションで使用するハッシュのキーについては JSON::State.new を参照してください。
[SEE_ALSO] JSON::State.new
depth -> Integer
[permalink][rdoc]This integer returns the current depth of data structure nesting.
depth=(depth)
[permalink][rdoc]This sets the maximum level of data structure nesting in the generated JSON to the integer depth, max_nesting = 0 if no maximum should be checked.
generate(obj) -> String
[permalink][rdoc]Generates a valid JSON document from object obj and returns the result. If no valid JSON document can be created this method raises a GeneratorError exception.
indent -> String
[permalink][rdoc]インデントに使用する文字列を返します。
require "json"
json_state = JSON::State.new(indent: "\t")
json_state.indent # => "\t"
JSON.generate({key1: "value1", key2: "value2"}, json_state)
# => "{\t\"key1\":\"value1\",\t\"key2\":\"value2\"}"
indent=(string)
[permalink][rdoc]インデントに使用する文字列をセットします。
require "json"
json_state = JSON::State.new(indent: "\t")
json_state.indent # => "\t"
JSON.generate({key1: "value1", key2: "value2"}, json_state)
# => "{\t\"key1\":\"value1\",\t\"key2\":\"value2\"}"
json_state.indent = " "
JSON.generate({key1: "value1", key2: "value2"}, json_state)
# => "{ \"key1\":\"value1\", \"key2\":\"value2\"}"
max_nesting -> Integer
[permalink][rdoc]生成される JSON 形式の文字列のネストの深さの最大値を返します。
この値がゼロである場合は、ネストの深さのチェックを行いません。
max_nesting=(depth)
[permalink][rdoc]生成される JSON 形式の文字列のネストの深さの最大値をセットします。
この値にゼロをセットすると、ネストの深さのチェックを行いません。
object_nl -> String
[permalink][rdoc]JSON 形式の文字列中に現れる JavaScript のオブジェクトの行末に挿入する文字列を返します。
require "json"
json_state = JSON::State.new(object_nl: "")
json_state.object_nl # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state = JSON::State.new(object_nl: "\n")
json_state.object_nl # => "\n"
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{
# "name":"tanaka",
# "age":19
# }]
object_nl=(string)
[permalink][rdoc]JSON 形式の文字列中に現れる JavaScript のオブジェクトの行末に挿入する文字列をセットします。
quirks_mode? -> bool
[permalink][rdoc]quirks_mode -> bool
Returns true, if quirks mode is enabled. Otherwise returns false.
quirks_mode=(enable)
[permalink][rdoc]If set to true, enables the quirks_mode mode.
space -> String
[permalink][rdoc]JSON 形式の文字列のトークン間に挿入する文字列を返します。
space=(string)
[permalink][rdoc]JSON 形式の文字列のトークン間に挿入する文字列をセットします。
space_before -> String
[permalink][rdoc]JSON 形式の文字列中で JavaScript のオブジェクトを表す部分にある ':' の 前に挿入する文字列を返します。
space_before=(string)
[permalink][rdoc]JSON 形式の文字列中で JavaScript のオブジェクトを表す部分にある ':' の 前に挿入する文字列をセットします。
to_h -> Hash
[permalink][rdoc]to_hash -> Hash
自身をハッシュに変換します。
require "json"
require "pp"
json_state = JSON::State.new
pp json_state.to_h
# => {:indent=>"",
# :space=>"",
# :space_before=>"",
# :object_nl=>"",
# :array_nl=>"",
# :allow_nan=>false,
# :ascii_only=>false,
# :max_nesting=>100,
# :depth=>0,
# :buffer_initial_length=>1024}