leap.lang.json.JsonWriterCreatorImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package leap.lang.json;
import leap.lang.beans.BeanProperty;
import leap.lang.naming.NamingStyle;
import leap.lang.naming.NamingStyles;
import java.util.function.Predicate;
class JsonWriterCreatorImpl implements JsonWriterCreator {
private final JsonSettings.Builder settings = new JsonSettings.Builder();
private final Appendable out;
protected boolean detectCyclicReferences = true;
protected boolean ignoreCyclicReferences = true;
protected int maxDepth = JsonWriter.MAX_DEPTH;
public JsonWriterCreatorImpl(Appendable out) {
this.out = out;
}
@Override
public JsonWriterCreator setDetectCyclicReferences(boolean detectCyclicReferences) {
this.detectCyclicReferences = detectCyclicReferences;
return this;
}
@Override
public JsonWriterCreator setIgnoreCyclicREferences(boolean ignoreCyclicReferences) {
this.ignoreCyclicReferences = ignoreCyclicReferences;
return this;
}
@Override
public JsonWriterCreator setKeyQuoted(boolean keyQuoted) {
settings.setKeyQuoted(keyQuoted);
return this;
}
@Override
public JsonWriterCreator setIgnoreNull(boolean ignoreNull) {
settings.setIgnoreNull(ignoreNull);
return this;
}
@Override
public JsonWriterCreator setIgnoreFalse(boolean ignoreFalse) {
settings.setIgnoreFalse(ignoreFalse);
return this;
}
@Override
public JsonWriterCreator setIgnoreEmptyString(boolean ignoreEmptyString) {
settings.setIgnoreEmptyString(ignoreEmptyString);
return this;
}
@Override
public JsonWriterCreator setIgnoreEmptyArray(boolean ignoreEmptyArray) {
settings.setIgnoreEmptyArray(ignoreEmptyArray);
return this;
}
@Override
public JsonWriterCreator setMaxDepth(int depth) {
this.maxDepth = depth;
return this;
}
@Override
public JsonWriterCreator setNamingStyle(NamingStyle namingStyle) {
settings.setNamingStyle(namingStyle);
return this;
}
@Override
public JsonWriterCreator setSettings(JsonSettings settings) {
if (null != settings) {
this.settings.setSettings(settings);
}
return this;
}
@Override
public JsonWriterCreator setBeanFilter(Predicate
© 2015 - 2025 Weber Informatics LLC | Privacy Policy