Interface CTSchema
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTSchema extends XmlObject
An XML CT_Schema(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTSchema.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetID()Gets the "ID" attributejava.lang.StringgetNamespace()Gets the "Namespace" attributejava.lang.StringgetSchemaRef()Gets the "SchemaRef" attributebooleanisSetNamespace()True if has "Namespace" attributebooleanisSetSchemaRef()True if has "SchemaRef" attributevoidsetID(java.lang.String id)Sets the "ID" attributevoidsetNamespace(java.lang.String namespace)Sets the "Namespace" attributevoidsetSchemaRef(java.lang.String schemaRef)Sets the "SchemaRef" attributevoidunsetNamespace()Unsets the "Namespace" attributevoidunsetSchemaRef()Unsets the "SchemaRef" attributeXmlStringxgetID()Gets (as xml) the "ID" attributeXmlStringxgetNamespace()Gets (as xml) the "Namespace" attributeXmlStringxgetSchemaRef()Gets (as xml) the "SchemaRef" attributevoidxsetID(XmlString id)Sets (as xml) the "ID" attributevoidxsetNamespace(XmlString namespace)Sets (as xml) the "Namespace" attributevoidxsetSchemaRef(XmlString schemaRef)Sets (as xml) the "SchemaRef" attribute-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getID
java.lang.String getID()
Gets the "ID" attribute
-
xgetID
XmlString xgetID()
Gets (as xml) the "ID" attribute
-
setID
void setID(java.lang.String id)
Sets the "ID" attribute
-
xsetID
void xsetID(XmlString id)
Sets (as xml) the "ID" attribute
-
getSchemaRef
java.lang.String getSchemaRef()
Gets the "SchemaRef" attribute
-
xgetSchemaRef
XmlString xgetSchemaRef()
Gets (as xml) the "SchemaRef" attribute
-
isSetSchemaRef
boolean isSetSchemaRef()
True if has "SchemaRef" attribute
-
setSchemaRef
void setSchemaRef(java.lang.String schemaRef)
Sets the "SchemaRef" attribute
-
xsetSchemaRef
void xsetSchemaRef(XmlString schemaRef)
Sets (as xml) the "SchemaRef" attribute
-
unsetSchemaRef
void unsetSchemaRef()
Unsets the "SchemaRef" attribute
-
getNamespace
java.lang.String getNamespace()
Gets the "Namespace" attribute
-
xgetNamespace
XmlString xgetNamespace()
Gets (as xml) the "Namespace" attribute
-
isSetNamespace
boolean isSetNamespace()
True if has "Namespace" attribute
-
setNamespace
void setNamespace(java.lang.String namespace)
Sets the "Namespace" attribute
-
xsetNamespace
void xsetNamespace(XmlString namespace)
Sets (as xml) the "Namespace" attribute
-
unsetNamespace
void unsetNamespace()
Unsets the "Namespace" attribute
-
-