A factory class with static methods for creating instances
of this type.
Method from org.apache.xmlbeans.samples.validation.todolist.ItemType$Factory Detail: |
public static ItemType newInstance() {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null );
}
|
public static ItemType newInstance(XmlOptions options) {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options );
}
|
public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis) throws XmlException, XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null );
} Deprecated! { - @link XMLInputStream}
|
public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis,
XmlOptions options) throws XmlException, XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options );
} Deprecated! { - @link XMLInputStream}
|
public static ItemType parse(String xmlAsString) throws XmlException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null );
}
|
public static ItemType parse(File file) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null );
}
|
public static ItemType parse(URL u) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null );
}
|
public static ItemType parse(InputStream is) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null );
}
|
public static ItemType parse(Reader r) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null );
}
|
public static ItemType parse(XMLStreamReader sr) throws XmlException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null );
}
|
public static ItemType parse(Node node) throws XmlException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null );
}
|
public static ItemType parse(XMLInputStream xis) throws XmlException, XMLStreamException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null );
} Deprecated! { - @link XMLInputStream}
|
public static ItemType parse(String xmlAsString,
XmlOptions options) throws XmlException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options );
}
|
public static ItemType parse(File file,
XmlOptions options) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options );
}
|
public static ItemType parse(URL u,
XmlOptions options) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options );
}
|
public static ItemType parse(InputStream is,
XmlOptions options) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options );
}
|
public static ItemType parse(Reader r,
XmlOptions options) throws XmlException, IOException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options );
}
|
public static ItemType parse(XMLStreamReader sr,
XmlOptions options) throws XmlException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options );
}
|
public static ItemType parse(Node node,
XmlOptions options) throws XmlException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options );
}
|
public static ItemType parse(XMLInputStream xis,
XmlOptions options) throws XmlException, XMLStreamException {
return (org.apache.xmlbeans.samples.validation.todolist.ItemType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options );
} Deprecated! { - @link XMLInputStream}
|