blob: 9b492dd180eb546bcdfa440de3f9784d26408c5e [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml;
import java.io.InputStream;
/**
* Convenience utility to parse JavaBeans. The returned instance is enforced to
* be of the same class as the provided argument. All the methods are Thread
* safe. When the YAML document contains a global tag with the class definition
* like '!!com.package.MyBean' it is ignored in favour of the runtime class.
*
* @deprecated use JavaBeanLoader instead
*/
public class JavaBeanParser {
private JavaBeanParser() {
}
/**
* Parse the first YAML document in a stream and produce the corresponding
* JavaBean.
*
* @param yaml
* YAML document
* @param javabean
* JavaBean class to be parsed
* @return parsed JavaBean
*/
public static <T> T load(String yaml, Class<T> javabean) {
JavaBeanLoader<T> loader = new JavaBeanLoader<T>(javabean);
return loader.load(yaml);
}
/**
* Parse the first YAML document in a stream and produce the corresponding
* JavaBean.
*
* @param io
* data to load from (BOM is respected and removed)
* @param javabean
* JavaBean class to be parsed
* @return parsed JavaBean
*/
public static <T> T load(InputStream io, Class<T> javabean) {
JavaBeanLoader<T> loader = new JavaBeanLoader<T>(javabean);
return loader.load(io);
}
/**
* Parse the first YAML document in a stream and produce the corresponding
* Java object.
*
* @param io
* data to load from (BOM must not be present)
* @param javabean
* JavaBean class to be parsed
* @return parsed JavaBean
*/
public static <T> T load(java.io.Reader io, Class<T> javabean) {
JavaBeanLoader<T> loader = new JavaBeanLoader<T>(javabean);
return loader.load(io);
}
}