com.dslplatform.json.runtime.AttributeArrayEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-json-java8 Show documentation
Show all versions of dsl-json-java8 Show documentation
DSL Platform compatible Java JSON library (https://dsl-platform.com)
package com.dslplatform.json.runtime;
import com.dslplatform.json.JsonWriter;
import java.util.function.Function;
class AttributeArrayEncoder implements JsonWriter.WriteObject {
private final Function read;
private final JsonWriter.WriteObject encoder;
AttributeArrayEncoder(
final Function read,
final JsonWriter.WriteObject encoder) {
if (read == null) throw new IllegalArgumentException("read can't be null");
if (encoder == null) throw new IllegalArgumentException("encoder can't be null");
this.read = read;
this.encoder = encoder;
}
@Override
public void write(final JsonWriter writer, final T value) {
final R attr = read.apply(value);
encoder.write(writer, attr);
}
}