blob: b4ae6ea81eb75e379974400634370bd583173d03 [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* 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 org.apache.xmlbeans;
/**
* Corresponds to the XML Schema
* <a target="_blank" href="http://www.w3.org/TR/xmlschema-1/#Simple_Type_Definition">xs:anySimpleType</a> type.
* <p>
* All simple types are convertible to {@link String}.
*/
public interface XmlAnySimpleType extends XmlObject
{
/** The constant {@link SchemaType} object representing this schema type. */
public static final SchemaType type = XmlBeans.getBuiltinTypeSystem().typeForHandle("_BI_anySimpleType");
/**
* Returns the value as a {@link String}
* @deprecated replaced by {@link #getStringValue}
**/
String stringValue();
/**
* Sets the value as a {@link String}
* @deprecated replaced by {@link #setStringValue}
**/
void set(String s);
/**
* Returns the value as a {@link String}
**/
String getStringValue();
/**
* Sets the value as a {@link String}
**/
void setStringValue(String s);
/**
* A class with methods for creating instances
* of {@link XmlAnySimpleType}.
*/
public static final class Factory
{
/** Creates an empty instance of {@link XmlAnySimpleType} */
public static XmlAnySimpleType newInstance() {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().newInstance( type, null ); }
/** Creates an empty instance of {@link XmlAnySimpleType} */
public static XmlAnySimpleType newInstance(org.apache.xmlbeans.XmlOptions options) {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** Creates an immutable {@link XmlAnySimpleType} value */
public static XmlAnySimpleType newValue(Object obj) {
return type.newValue( obj ); }
/** Parses a {@link XmlAnySimpleType} fragment from a String. For example: "<code>&lt;xml-fragment&gt;anything&lt;/xml-fragment&gt;</code>". */
public static XmlAnySimpleType parse(java.lang.String s) throws org.apache.xmlbeans.XmlException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( s, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from a String. For example: "<code>&lt;xml-fragment&gt;anything&lt;/xml-fragment&gt;</code>". */
public static XmlAnySimpleType parse(java.lang.String s, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( s, type, options ); }
/** Parses a {@link XmlAnySimpleType} fragment from a File. */
public static XmlAnySimpleType parse(java.io.File f) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( f, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from a File. */
public static XmlAnySimpleType parse(java.io.File f, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( f, type, options ); }
/** Parses a {@link XmlAnySimpleType} fragment from a URL. */
public static XmlAnySimpleType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( u, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from a URL. */
public static XmlAnySimpleType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( u, type, options ); }
/** Parses a {@link XmlAnySimpleType} fragment from an InputStream. */
public static XmlAnySimpleType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( is, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from an InputStream. */
public static XmlAnySimpleType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( is, type, options ); }
/** Parses a {@link XmlAnySimpleType} fragment from a Reader. */
public static XmlAnySimpleType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( r, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from a Reader. */
public static XmlAnySimpleType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( r, type, options ); }
/** Parses a {@link XmlAnySimpleType} fragment from a DOM Node. */
public static XmlAnySimpleType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( node, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from a DOM Node. */
public static XmlAnySimpleType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** Parses a {@link XmlAnySimpleType} fragment from an XMLInputStream.
* @deprecated Superceded by JSR 173 */
public static XmlAnySimpleType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** Parses a {@link XmlAnySimpleType} fragment from an XMLInputStream.
* @deprecated Superceded by JSR 173 */
public static XmlAnySimpleType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (XmlAnySimpleType) XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** Returns a validating XMLInputStream.
* @deprecated Superceded by JSR 173 */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** Returns a validating XMLInputStream.
* @deprecated Superceded by JSR 173 */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}