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 class
CTSchema.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
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.String
getID()
Gets the "ID" attributejava.lang.String
getNamespace()
Gets the "Namespace" attributejava.lang.String
getSchemaRef()
Gets the "SchemaRef" attributeboolean
isSetNamespace()
True if has "Namespace" attributeboolean
isSetSchemaRef()
True if has "SchemaRef" attributevoid
setID(java.lang.String id)
Sets the "ID" attributevoid
setNamespace(java.lang.String namespace)
Sets the "Namespace" attributevoid
setSchemaRef(java.lang.String schemaRef)
Sets the "SchemaRef" attributevoid
unsetNamespace()
Unsets the "Namespace" attributevoid
unsetSchemaRef()
Unsets the "SchemaRef" attributeXmlString
xgetID()
Gets (as xml) the "ID" attributeXmlString
xgetNamespace()
Gets (as xml) the "Namespace" attributeXmlString
xgetSchemaRef()
Gets (as xml) the "SchemaRef" attributevoid
xsetID(XmlString id)
Sets (as xml) the "ID" attributevoid
xsetNamespace(XmlString namespace)
Sets (as xml) the "Namespace" attributevoid
xsetSchemaRef(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
-
-