PointJsonAdapter

class PointJsonAdapter : JsonAdapter<Point>

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
@CheckReturnValue
fun failOnUnknown(): JsonAdapter<Point?>?
Link copied to clipboard
@CheckReturnValue
@Nullable
fun fromJson(string: String?): Point?
@CheckReturnValue
@Nullable
fun fromJson(source: BufferedSource?): Point?
open override fun fromJson(reader: JsonReader): Point
Link copied to clipboard
@CheckReturnValue
@Nullable
fun fromJsonValue(@Nullable value: Any?): Point?
Link copied to clipboard
@CheckReturnValue
open fun indent(indent: String?): JsonAdapter<Point?>?
Link copied to clipboard
@CheckReturnValue
fun lenient(): JsonAdapter<Point?>?
Link copied to clipboard
@CheckReturnValue
fun nonNull(): JsonAdapter<Point?>?
Link copied to clipboard
@CheckReturnValue
fun nullSafe(): JsonAdapter<Point?>?
Link copied to clipboard
@CheckReturnValue
fun serializeNulls(): JsonAdapter<Point?>?
Link copied to clipboard
@CheckReturnValue
fun toJson(@Nullable value: Point?): String?
fun toJson(sink: BufferedSink?, @Nullable value: Point?)
open override fun toJson(writer: JsonWriter, value: Point?)
Link copied to clipboard
@CheckReturnValue
@Nullable
fun toJsonValue(@Nullable value: Point?): Any?