All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.autermann.yaml.construct.YamlScalarNodeConstruct Maven / Gradle / Ivy

/*
 * Copyright 2013 Christian Autermann
 *
 * 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 com.github.autermann.yaml.construct;

import org.yaml.snakeyaml.nodes.Node;
import org.yaml.snakeyaml.nodes.ScalarNode;

import com.github.autermann.yaml.YamlNodeFactory;
import com.github.autermann.yaml.nodes.YamlScalarNode;

/**
 * {@link org.yaml.snakeyaml.constructor.Construct} to construct
 * {@link YamlScalarNode}s from
 * string scalar nodes.
 */
public abstract class YamlScalarNodeConstruct extends YamlConstruct {

    /**
     * Creates a new {@link YamlScalarNode} backed by the specified
     * {@link YamlNodeFactory} and {@link YamlNodeConstructor}.
     *
     * @param nodeFactory the node factory
     * @param delegate    the delegate
     */
    public YamlScalarNodeConstruct(YamlNodeFactory nodeFactory,
                                           YamlNodeConstructor delegate) {
        super(nodeFactory, delegate);
    }

    @Override
    public Object construct(Node node) {
        return construct(((ScalarNode) node).getValue());
    }

    /**
     * Construct a {@link com.github.autermann.yaml.YamlNode} from the specified
     * scalar value.
     *
     * @param value the value of the scalar
     *
     * @return the {@link com.github.autermann.yaml.YamlNode}
     */
    protected abstract YamlScalarNode construct(String value);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy