A  B  C  D  E  F  G  H  I  J  L  O  P  R  S  T  V 

A

AbstractBuilder - class in io.kjson.util
An abstract base class for the Builder classes of JSONArray and JSONObject.
accept(java.util.function.IntConsumer,java.lang.CharSequence) - function in io.kjson.JSON
Output a CharSequence (e.g.
add(io.kjson.JSONValue) - function in io.kjson.JSONArray.Builder
Add a JSONValue.
add(java.math.BigDecimal) - function in io.kjson.JSONArray.Builder
Add a JSONDecimal with the supplied value.
add(java.lang.Boolean) - function in io.kjson.JSONArray.Builder
Add a JSONBoolean with the supplied value.
add(java.lang.Integer) - function in io.kjson.JSONArray.Builder
Add a JSONInt with the supplied value.
add(java.lang.Long) - function in io.kjson.JSONArray.Builder
Add a JSONLong with the supplied value.
add(java.lang.String) - function in io.kjson.JSONArray.Builder
Add a JSONString with the supplied value.
add(io.kjson.JSONObject.Property) - function in io.kjson.JSONObject.Builder
Add a Property.
add(java.lang.String,io.kjson.JSONValue) - function in io.kjson.JSONObject.Builder
Add a JSONValue with the specified name.
add(java.lang.String,java.math.BigDecimal) - function in io.kjson.JSONObject.Builder
Add a JSONDecimal with the supplied value and name.
add(java.lang.String,java.lang.Boolean) - function in io.kjson.JSONObject.Builder
Add a JSONBoolean with the supplied value and name.
add(java.lang.String,java.lang.Integer) - function in io.kjson.JSONObject.Builder
Add a JSONInt with the supplied value and name.
add(java.lang.String,java.lang.Long) - function in io.kjson.JSONObject.Builder
Add a JSONLong with the supplied value and name.
add(java.lang.String,java.lang.String) - function in io.kjson.JSONObject.Builder
Add a JSONString with the supplied value and name.
addSuppressed(java.lang.Throwable) - function in kotlin.Throwable
 
appendJSONLines(kotlin.text.Appendable) - function in io.kjson.JSONArray
Append in JSON Lines form to an Appendable.
appendJSONLinesTo(kotlin.text.Appendable) - function in io.kjson.JSONArray
Append in JSON Lines form to an Appendable.
appendJSONValue(kotlin.text.Appendable,io.kjson.JSONValue) - function in io.kjson.JSON
Append a JSONValue as a JSON string ("null" if the value is null) to the receiver Appendable.
appendTo(io.kjson.JSONValue,kotlin.text.Appendable) - function in io.kjson.JSON
Append the receiver JSONValue as a JSON string ("null" if the receiver is null) to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONArray
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONBoolean
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONDecimal
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONInt
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONLong
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONObject
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONPrimitive
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONString
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONStructure
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONValue
Append as a JSON string to an Appendable.
appendTo(kotlin.text.Appendable) - function in io.kjson.JSONValue
Append as a JSON string to an Appendable.
asArrayOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a JSONArray if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asArrayOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a JSONArray, or throw a JSONTypeException if incorrect.
asBooleanOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a Boolean if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asBooleanOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a Boolean, or throw a JSONTypeException if incorrect.
asByteOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a Byte if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asByteOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a Byte, or throw a JSONTypeException if incorrect.
asDecimalOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a BigDecimal if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asDecimalOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a BigDecimal, or throw a JSONTypeException if incorrect.
asIntOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as an Int if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asIntOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as an Int, or throw a JSONTypeException if incorrect.
asLongOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a Long if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asLongOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a Long, or throw a JSONTypeException if incorrect.
asObjectOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a JSONObject if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asObjectOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a JSONObject, or throw a JSONTypeException if incorrect.
asShortOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a Short if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asShortOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a Short, or throw a JSONTypeException if incorrect.
asStringOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a String if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asStringOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a String, or throw a JSONTypeException if incorrect.
asUByteOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a UByte if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asUByteOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a UByte, or throw a JSONTypeException if incorrect.
asUIntOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a UInt if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asUIntOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a UInt, or throw a JSONTypeException if incorrect.
asULongOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a ULong if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asULongOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a ULong, or throw a JSONTypeException if incorrect.
asUShortOr(io.kjson.JSONValue,kotlin.jvm.functions.Function1) - function in io.kjson.JSON
Get the receiver JSONValue as a UShort if compatible, or if not, return the result of the evaluation of the lambda (which may supply an alternative or throw an exception).
asUShortOrError(io.kjson.JSONValue,java.lang.String,java.lang.Object,java.lang.String) - function in io.kjson.JSON
Get the receiver JSONValue as a UShort, or throw a JSONTypeException if incorrect.
A  B  C  D  E  F  G  H  I  J  L  O  P  R  S  T  V