106107108109110111112
* @return A new, blank InferredSchema. * */ public static InferredSchema newInstance() { return new InferredSchemaImpl(); }
120121122123124125126
* @throws XmlException * @throws IOException */ public static InferredSchema parse( InputStream is ) throws XmlException, IOException { return new InferredSchemaImpl( is ); }
104105106107108109110
* Creates a new empty schema. * * @return A new, blank InferredSchema. */ public static InferredSchema newInstance() { return new InferredSchemaImpl(); }
117118119120121122123
* @return An InferredSchema containing previously saved data. * @throws XmlException * @throws IOException */ public static InferredSchema parse(InputStream is) throws XmlException, IOException { return new InferredSchemaImpl(is); }