net.opengis.swe.x101.AllowedTokensDocument Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: AllowedTokens
* Namespace: http://www.opengis.net/swe/1.0.1
* Java type: net.opengis.swe.x101.AllowedTokensDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.swe.x101;
/**
* A document containing one AllowedTokens(@http://www.opengis.net/swe/1.0.1) element.
*
* This is a complex type.
*/
public interface AllowedTokensDocument extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(AllowedTokensDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s746EE08EBAFCE08196059CD2378D54C5").resolveHandle("allowedtokens005ddoctype");
/**
* Gets the "AllowedTokens" element
*/
net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens getAllowedTokens();
/**
* Sets the "AllowedTokens" element
*/
void setAllowedTokens(net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens allowedTokens);
/**
* Appends and returns a new empty "AllowedTokens" element
*/
net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens addNewAllowedTokens();
/**
* An XML AllowedTokens(@http://www.opengis.net/swe/1.0.1).
*
* This is a complex type.
*/
public interface AllowedTokens extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(AllowedTokens.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s746EE08EBAFCE08196059CD2378D54C5").resolveHandle("allowedtokensd66felemtype");
/**
* Gets array of all "valueList" elements
*/
java.util.List[] getValueListArray();
/**
* Gets ith "valueList" element
*/
java.util.List getValueListArray(int i);
/**
* Gets (as xml) array of all "valueList" elements
*/
net.opengis.swe.x101.TokenList[] xgetValueListArray();
/**
* Gets (as xml) ith "valueList" element
*/
net.opengis.swe.x101.TokenList xgetValueListArray(int i);
/**
* Returns number of "valueList" element
*/
int sizeOfValueListArray();
/**
* Sets array of all "valueList" element
*/
void setValueListArray(java.util.List[] valueListArray);
/**
* Sets ith "valueList" element
*/
void setValueListArray(int i, java.util.List valueList);
/**
* Sets (as xml) array of all "valueList" element
*/
void xsetValueListArray(net.opengis.swe.x101.TokenList[] valueListArray);
/**
* Sets (as xml) ith "valueList" element
*/
void xsetValueListArray(int i, net.opengis.swe.x101.TokenList valueList);
/**
* Inserts the value as the ith "valueList" element
*/
void insertValueList(int i, java.util.List valueList);
/**
* Appends the value as the last "valueList" element
*/
void addValueList(java.util.List valueList);
/**
* Inserts and returns a new empty value (as xml) as the ith "valueList" element
*/
net.opengis.swe.x101.TokenList insertNewValueList(int i);
/**
* Appends and returns a new empty value (as xml) as the last "valueList" element
*/
net.opengis.swe.x101.TokenList addNewValueList();
/**
* Removes the ith "valueList" element
*/
void removeValueList(int i);
/**
* Gets the "id" attribute
*/
java.lang.String getId();
/**
* Gets (as xml) the "id" attribute
*/
org.apache.xmlbeans.XmlID xgetId();
/**
* True if has "id" attribute
*/
boolean isSetId();
/**
* Sets the "id" attribute
*/
void setId(java.lang.String id);
/**
* Sets (as xml) the "id" attribute
*/
void xsetId(org.apache.xmlbeans.XmlID id);
/**
* Unsets the "id" attribute
*/
void unsetId();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens newInstance() {
return (net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.swe.x101.AllowedTokensDocument.AllowedTokens) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.swe.x101.AllowedTokensDocument newInstance() {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static net.opengis.swe.x101.AllowedTokensDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.swe.x101.AllowedTokensDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.swe.x101.AllowedTokensDocument 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 (net.opengis.swe.x101.AllowedTokensDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
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 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
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 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy