索引
すべてのクラス|すべてのパッケージ
A
- array() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ArrayJsonHub instance, values is empty.
- array(JsonHub...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ArrayJsonHub instance.
- array(List<? extends JsonHub>) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ArrayJsonHub instance.
- ARRAY - com.shimizukenta.jsonhub.JsonHubType
-
ARRAY
B
- booleanValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns boolean value if type is TRUE or FALSE.
- build(boolean) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns TrueJsonHub or FalseJsonHub instance.
- build(double) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of double-value.
- build(float) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of float-value.
- build(int) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of int-value.
- build(long) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of long-value.
- build(Object) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns AbstractJsonHub instance (NULL, TRUE, FALSE, STRING or NUMBER).
C
- com.shimizukenta.jsonhub - パッケージ com.shimizukenta.jsonhub
-
This package provides the
JsonHub
interface to convert, parse, build JSON(RFC 8259). - containsKey(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns true if contains name in Object.
D
- defaultConfig() - クラス のstaticメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Returns default-JsonHubPrettyPrinterConfig.
- doubleValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns double value if type is NUMBER.
E
- emptyArray() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ArrayJsonHub instance, values is empty.
- emptyObject() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ObjectJsonHub instance, Object pairs is empty.
- escaped() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonString
-
Returns escaped string.
F
- FALSE - com.shimizukenta.jsonhub.JsonHubType
-
false
- falseValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns FalseJsonHub instance.
- forEach(BiConsumer<? super JsonString, ? super JsonHub>) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
forEach operation if type is OBJECT or ARRAY.
- forEach(Consumer<? super JsonHub>) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
forEach operation if type is OBJECT or ARRAY.
- fromBytes(byte[]) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed JsonHub instance from JSON-UTF8-bytes-array.
- fromBytes(InputStream) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed JsonHub instance from JSON-UTF8-bytes-stream.
- fromFile(Path) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed JsonHub instance from read file.
- fromJson(Reader) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed JaonHub from Reader.
- fromJson(Reader) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns parsed JsonHub instance from Reader includes JSON-String.
- fromJson(CharSequence) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHub instance parsing from JSON-String.
- fromJson(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns parsed JsonHub instance from JSON-String.
- fromPojo(Object) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHub instance parsing from POJO (Plain-Old-Java-Object).
G
- get(int) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns value in Array by index.
- get(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHub OBJECT-value instance if Object has same-name, and null otherwise.
- get(String...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHub instance, seek chains in Object by names, If seek failed, return
null
. - getBuilder() - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHubBuilder.
- getBytes() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns UTF-8 encorded bytes.
- getBytesExcludedNullValueInObject() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns UTF-8 encorded bytes excluded null value in Object.
- getCompactPrinter() - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Returns Compact-pretty-printer instance.
- getDefaultPrinter() - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Returns Default-pretty-printer instance
- getInstance() - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonHubBuilder instance.
- getNoneNullValueInObjectCompactPrinter() - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Returns Compact-and-exclude-null-value-in-object-pretty-printer instance.
- getOrDefault(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHub instance, seek in Object name, if not exist, return empty-ObjectJsonHub.
- getOrDefault(CharSequence, JsonHub) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns JsonHub instance, seek in Object name, if not exist, return
defaultValue
.
I
- indent() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Indent getter.
- indent(CharSequence) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Indent setter.
- intValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns int value if type is NUMBER.
- isArray() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is ARRAY. - isBoolean() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is TRUE or FALSE. - isEmpty() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if empty. - isEmpty() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonString
-
Returns unescaped#isEmpty.
- isFalse() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is FALSE. - isNull() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is NULL. - isNumber() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is NUMBER. - isObject() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is OBJECT. - isString() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is STRING. - isTrue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is TRUE. - iterator() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns iterator if type is OBJECT or ARRAY.
J
- JsoncReader - com.shimizukenta.jsonhubのインタフェース
-
This interface is JSONC reader to JsonHub.
- JsoncReaderException - com.shimizukenta.jsonhubの例外
-
JSON reader Exception.
- JsoncReaderException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsoncReaderException
-
Constructor.
- JsoncReaderException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsoncReaderException
-
Constructor.
- JsoncReaderException(String, Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsoncReaderException
-
Constructor.
- JsoncReaderException(String, Throwable, boolean, boolean) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsoncReaderException
-
COonstructor.
- JsoncReaderException(Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsoncReaderException
-
Constructor.
- JsonHub - com.shimizukenta.jsonhubのインタフェース
-
This interface is implements of JSON(RFC 8259) converter, parser, builder, prettyPrint.
- JsonHubBuilder - com.shimizukenta.jsonhubのインタフェース
-
This interface is implements of building JsonHub instance.
- JsonHubBuildException - com.shimizukenta.jsonhubの例外
-
JsonHub build Exception.
- JsonHubBuildException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubBuildException
-
Constructor.
- JsonHubBuildException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubBuildException
-
Constructor.
- JsonHubBuildException(String, Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubBuildException
-
Constructor.
- JsonHubBuildException(Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubBuildException
-
Constructor.
- JsonHubIndexOutOfBoundsException - com.shimizukenta.jsonhubの例外
-
JsonHub parse Index out of bounds Exception.
- JsonHubIndexOutOfBoundsException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubIndexOutOfBoundsException
-
Constructor.
- JsonHubIndexOutOfBoundsException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubIndexOutOfBoundsException
-
Constructor.
- JsonHubNumberFormatException - com.shimizukenta.jsonhubの例外
-
JsonHub Number format Exception.
- JsonHubNumberFormatException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubNumberFormatException
-
Constructor.
- JsonHubNumberFormatException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubNumberFormatException
-
Constructor.
- JsonHubParseException - com.shimizukenta.jsonhubの例外
-
JsonHub Parse Exception.
- JsonHubParseException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubParseException
-
Constructor.
- JsonHubParseException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubParseException
-
Constructor.
- JsonHubParseException(String, Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubParseException
-
Constructor.
- JsonHubParseException(Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubParseException
-
Constructor.
- JsonHubPrettyPrinter - com.shimizukenta.jsonhubのインタフェース
-
This interface is implements of pretty-printing JSON.
- JsonHubPrettyPrinterConfig - com.shimizukenta.jsonhubのクラス
-
This class is implements of Pretty-Print-Configuration.
- JsonHubType - com.shimizukenta.jsonhubの列挙
-
JSON value types.
- JsonHubUnsupportedOperationException - com.shimizukenta.jsonhubの例外
-
JsonHub Unsupported Operation Exception.
- JsonHubUnsupportedOperationException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedOperationException
-
Constructor.
- JsonHubUnsupportedOperationException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedOperationException
-
Constructor.
- JsonHubUnsupportedOperationException(String, Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedOperationException
-
Constructor.
- JsonHubUnsupportedOperationException(Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedOperationException
-
Constructor.
- JsonHubUnsupportedParseException - com.shimizukenta.jsonhubの例外
-
JsonHub Unsupported Parse Exception.
- JsonHubUnsupportedParseException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedParseException
-
Constructor.
- JsonHubUnsupportedParseException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedParseException
-
Constructor.
- JsonHubUnsupportedParseException(String, Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedParseException
-
Constructor.
- JsonHubUnsupportedParseException(Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonHubUnsupportedParseException
-
Constructor.
- JsonObjectPair - com.shimizukenta.jsonhubのインタフェース
-
this interface is pair of Object name ans value.
- jsonPath(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Parse with JsonPath.
- JsonPathParseException - com.shimizukenta.jsonhubの例外
-
JsonPath parse Exception.
- JsonPathParseException() - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonPathParseException
-
Constructor.
- JsonPathParseException(String) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonPathParseException
-
Constructor.
- JsonPathParseException(String, Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonPathParseException
-
Constructor.
- JsonPathParseException(String, Throwable, boolean, boolean) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonPathParseException
-
Constructor.
- JsonPathParseException(Throwable) - 例外 のコンストラクタcom.shimizukenta.jsonhub.JsonPathParseException
-
Constructor.
- JsonString - com.shimizukenta.jsonhubのインタフェース
-
This interface is escape/unescape JSON-String.
K
L
- length() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns length if type is STRING or OBJECT or ARRAY.
- length() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonString
-
Returns unescaped#length.
- lineSeparateAfterValueSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Line-Separating after value-separator getter.
- lineSeparateAfterValueSeparator(boolean) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Setter of Line-Separate after value-Separator (",").
- lineSeparateBeforeValueSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Line-Separating before value-separator getter.
- lineSeparateBeforeValueSeparator(boolean) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Setter of Line-Separate before value-Separator (",").
- lineSeparateIfBlank() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Line-Separate in blank ARRAY or OBJECT getter.
- lineSeparateIfBlank(boolean) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Setter of Line-Separate in blank ARRAY or OBJECT.
- lineSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Line Separator getter.
- lineSeparator(CharSequence) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Line Separator setter.
- longValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns long value if type is NUMBER.
N
- name() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonObjectPair
-
Returns name of pair.
- newPrinter(JsonHubPrettyPrinterConfig) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Returns Customized-pretty-printer instance.
- noneNullInObject(boolean) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Setter of excluding null-value-pair in OBJECT.
- noneNullValueInObject() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Excluding null-value-pair in OBJECT getter.
- nonNull() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns
true
if type is not null. - NULL - com.shimizukenta.jsonhub.JsonHubType
-
null
- nullValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NullJsonHub instance.
- number(double) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of double-value.
- number(float) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of float-value.
- number(int) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of int-value.
- number(long) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance of long-value.
- number(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance from JSON-String.
- number(Number) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns NumberJsonHub instance.
- NUMBER - com.shimizukenta.jsonhub.JsonHubType
-
NUMBER
O
- object() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ObjectJsonHub instance, Object pairs is empty.
- object(JsonObjectPair...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ObjectJsonHub instance.
- object(Collection<? extends JsonObjectPair>) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ObjectJsonHub instance.
- object(Map<? extends JsonString, ? extends JsonHub>) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns ObjectJsonHub instance.
- OBJECT - com.shimizukenta.jsonhub.JsonHubType
-
OBJECT
- of(JsonString, JsonHub) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonObjectPair
-
Returns JsonObjectPair instance.
- ofEscaped(CharSequence) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonString
-
Returns JsonString instance from escaped-String.
- ofUnescaped(CharSequence) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsonString
-
Returns JsonString instance from unescaped-String.
- optionalBoolean() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns Optional, Optional has value if type is TRUE or FALSE, and
Optional.empty()
otherwise. - optionalDouble() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns OptionalDouble, OptionalDouble has value if type is NUMBER, and
OptionalDouble.empty()
otherwise. - optionalInt() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns OptionalInt, OptionalInt has value if type is NUMBER, and
OptionalInt.empty()
otherwise. - optionalLong() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns OptionalLong, OptionalLong has value if type is NUMBER, and
OptionalLong.empty()
otherwise. - optionalNubmer() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns Optional, Optional has value if type is NUMBER, and
Optional.empty()
otherwise. - optionalString() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns Optional, Optional has value if type is STRING, and
Optional.empty()
otherwise.
P
- pair(JsonString, boolean) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(JsonString, double) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(JsonString, float) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(JsonString, int) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(JsonString, long) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(JsonString, Object) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(CharSequence, boolean) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(CharSequence, double) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(CharSequence, float) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(CharSequence, int) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(CharSequence, long) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- pair(CharSequence, Object) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns JsonObjectPair instance.
- prefixNameSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Prefix-String of name-Separator (":") getter.
- prefixNameSeparator(CharSequence) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Prefix-String of name-Separator (":") setter.
- prefixValueSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Prefix-String of value-Separator (",") getter.
- prefixValueSeparator(CharSequence) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Prefix-String of value-Separator (",") setter.
- prettyPrint() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns default format Pretty-Print-JSON.
- prettyPrint(JsonHubPrettyPrinterConfig) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns Pretty-Print-JSON with config format.
- prettyPrint(Writer) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write default format Pretty-Print-JSON to writer
- prettyPrint(Writer, JsonHubPrettyPrinterConfig) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write Pretty-Print-JSON to writer with config format
- prettyPrint(Path) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write default format Pretty-Print-JSON to File
- prettyPrint(Path, JsonHubPrettyPrinterConfig) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write Pretty-Print-JSON to File with config format
- prettyPrint(Path, JsonHubPrettyPrinterConfig, OpenOption...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write Pretty-Print-JSON to File with config format
- prettyPrint(Path, OpenOption...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write default format Pretty-Print-JSON to File
- print(JsonHub) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Returns Pritty-JSON-String.
- print(JsonHub, Writer) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Write to writer
- print(JsonHub, Path) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Write to File.
- print(JsonHub, Path, OpenOption...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinter
-
Write to File with options.
R
- readFile(Path) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsoncReader
-
Returns parsed JsonHub instance from JSONC file.
- readLine(CharSequence) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsoncReader
-
Returns parsed JsonHub instance from JSONC String.
- readLines(List<? extends CharSequence>) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsoncReader
-
Returns parsed JsonHub instance from JSONC lines.
- readReader(Reader) - インタフェース のstaticメソッドcom.shimizukenta.jsonhub.JsoncReader
-
Returns parsed JsonHub instance from JSONC reader.
S
- spliterator() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns spliterator if type is OBJECT or ARRAY.
- stream() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns java.util.stream.Stream if type is OBJECT or ARRAY.
- string(JsonString) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns StringJsonHub from JsonString.
- string(CharSequence) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns StringJsonHub from JSON-String.
- STRING - com.shimizukenta.jsonhub.JsonHubType
-
STRING
- suffixNameSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Suffix-String of name-Separator (":") getter.
- suffixNameSeparator(CharSequence) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Suffix-String of name-Separator (":") setter.
- suffixValueSeparator() - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Suffix-String of value-Separator (",") getter.
- suffixValueSeparator(CharSequence) - クラス のメソッドcom.shimizukenta.jsonhub.JsonHubPrettyPrinterConfig
-
Suffix-String of value-Separator (",") setter.
T
- toJson() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed compact-JSON-String
- toJson(Writer) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write compact-JSON-String to Writer
- toJsonExcludedNullValueInObject() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed compact-JSON-String exclude null value pair in Object;
- toJsonExcludedNullValueInObject(Writer) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed compact-JSON-String exclude null value pair in Object;
- toPojo(Class<T>) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns parsed instance of ClassOtT.
- TRUE - com.shimizukenta.jsonhub.JsonHubType
-
true
- trueValue() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHubBuilder
-
Returns TrueJsonHub instance.
- type() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns type, type is NULL, TRUE, FALSE, NUMBER, STRING, ARRAY or OBJECT.
U
- unescaped() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonString
-
Returns unescaped string.
V
- value() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonObjectPair
-
Returns value of pair.
- valueOf(String) - 列挙 のstaticメソッドcom.shimizukenta.jsonhub.JsonHubType
-
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に 一致している必要があります。(余分な空白文字を含めることは できません。)
- values() - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Returns list of values.
- values() - 列挙 のstaticメソッドcom.shimizukenta.jsonhub.JsonHubType
-
この列挙型の定数を含む配列を宣言されている順序で 返します。
W
- writeBytes(OutputStream) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write UTF-8 encorded bytes to OutputStream
- writeBytesExcludedNullValueInObject(OutputStream) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write UTF-8 encorded bytes exclued null value in Object to OutputStream
- writeFile(Path) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write to file.
- writeFile(Path, OpenOption...) - インタフェース のメソッドcom.shimizukenta.jsonhub.JsonHub
-
Write to file with options.
すべてのクラス|すべてのパッケージ