Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (c) 2008, http://www.snakeyaml.org
*
* 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 lowentry.ue4.libs.snakeyaml.representer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.IdentityHashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import lowentry.ue4.libs.snakeyaml.DumperOptions;
import lowentry.ue4.libs.snakeyaml.DumperOptions.FlowStyle;
import lowentry.ue4.libs.snakeyaml.DumperOptions.ScalarStyle;
import lowentry.ue4.libs.snakeyaml.introspector.PropertyUtils;
import lowentry.ue4.libs.snakeyaml.nodes.AnchorNode;
import lowentry.ue4.libs.snakeyaml.nodes.MappingNode;
import lowentry.ue4.libs.snakeyaml.nodes.Node;
import lowentry.ue4.libs.snakeyaml.nodes.NodeTuple;
import lowentry.ue4.libs.snakeyaml.nodes.ScalarNode;
import lowentry.ue4.libs.snakeyaml.nodes.SequenceNode;
import lowentry.ue4.libs.snakeyaml.nodes.Tag;
/**
* Represent basic YAML structures: scalar, sequence, mapping
*/
@SuppressWarnings("all")
public abstract class BaseRepresenter {
protected final Map, Represent> representers = new HashMap, Represent>();
/**
* in Java 'null' is not a type. So we have to keep the null representer
* separately otherwise it will coincide with the default representer which
* is stored with the key null.
*/
protected Represent nullRepresenter;
// the order is important (map can be also a sequence of key-values)
protected final Map, Represent> multiRepresenters = new LinkedHashMap, Represent>();
protected DumperOptions.ScalarStyle defaultScalarStyle = null; //not explicitly defined
protected FlowStyle defaultFlowStyle = FlowStyle.AUTO;
protected final Map