net.opengis.wmts.x10.StyleDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: Style
* Namespace: http://www.opengis.net/wmts/1.0
* Java type: net.opengis.wmts.x10.StyleDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.wmts.x10;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one Style(@http://www.opengis.net/wmts/1.0) element.
*
* This is a complex type.
*/
public interface StyleDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "style4273doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Style" element
*/
net.opengis.wmts.x10.StyleDocument.Style getStyle();
/**
* Sets the "Style" element
*/
void setStyle(net.opengis.wmts.x10.StyleDocument.Style style);
/**
* Appends and returns a new empty "Style" element
*/
net.opengis.wmts.x10.StyleDocument.Style addNewStyle();
/**
* An XML Style(@http://www.opengis.net/wmts/1.0).
*
* This is a complex type.
*/
public interface Style extends net.opengis.ows.x11.DescriptionType {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "style8570elemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Identifier" element
*/
net.opengis.ows.x11.CodeType getIdentifier();
/**
* Sets the "Identifier" element
*/
void setIdentifier(net.opengis.ows.x11.CodeType identifier);
/**
* Appends and returns a new empty "Identifier" element
*/
net.opengis.ows.x11.CodeType addNewIdentifier();
/**
* Gets a List of "LegendURL" elements
*/
java.util.List getLegendURLList();
/**
* Gets array of all "LegendURL" elements
*/
net.opengis.wmts.x10.LegendURLDocument.LegendURL[] getLegendURLArray();
/**
* Gets ith "LegendURL" element
*/
net.opengis.wmts.x10.LegendURLDocument.LegendURL getLegendURLArray(int i);
/**
* Returns number of "LegendURL" element
*/
int sizeOfLegendURLArray();
/**
* Sets array of all "LegendURL" element
*/
void setLegendURLArray(net.opengis.wmts.x10.LegendURLDocument.LegendURL[] legendURLArray);
/**
* Sets ith "LegendURL" element
*/
void setLegendURLArray(int i, net.opengis.wmts.x10.LegendURLDocument.LegendURL legendURL);
/**
* Inserts and returns a new empty value (as xml) as the ith "LegendURL" element
*/
net.opengis.wmts.x10.LegendURLDocument.LegendURL insertNewLegendURL(int i);
/**
* Appends and returns a new empty value (as xml) as the last "LegendURL" element
*/
net.opengis.wmts.x10.LegendURLDocument.LegendURL addNewLegendURL();
/**
* Removes the ith "LegendURL" element
*/
void removeLegendURL(int i);
/**
* Gets the "isDefault" attribute
*/
boolean getIsDefault();
/**
* Gets (as xml) the "isDefault" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetIsDefault();
/**
* True if has "isDefault" attribute
*/
boolean isSetIsDefault();
/**
* Sets the "isDefault" attribute
*/
void setIsDefault(boolean isDefault);
/**
* Sets (as xml) the "isDefault" attribute
*/
void xsetIsDefault(org.apache.xmlbeans.XmlBoolean isDefault);
/**
* Unsets the "isDefault" attribute
*/
void unsetIsDefault();
}
}