
com.github.autermann.yaml.construct.YamlNullNodeConstruct Maven / Gradle / Ivy
/*
* Copyright 2013-2015 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 com.github.autermann.yaml.YamlNodeFactory;
import com.github.autermann.yaml.nodes.YamlScalarNode;
/**
* Constructs a {@link com.github.autermann.yaml.nodes.YamlNullNode} from a
* scalar node.
*/
public class YamlNullNodeConstruct extends YamlScalarNodeConstruct {
/**
* Creates a new {@link YamlNullNodeConstruct}.
*
* @param nodeFactory the node factory
* @param delegate the delegate
*/
public YamlNullNodeConstruct(YamlNodeFactory nodeFactory,
YamlNodeConstructor delegate) {
super(nodeFactory, delegate);
}
@Override
public YamlScalarNode construct(String value) {
return getNodeFactory().nullNode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy