Interface CTProtectedRanges
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTProtectedRanges extends XmlObject
An XML CT_ProtectedRanges(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTProtectedRanges.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 Deprecated Methods Modifier and Type Method Description CTProtectedRange
addNewProtectedRange()
Appends and returns a new empty value (as xml) as the last "protectedRange" elementCTProtectedRange[]
getProtectedRangeArray()
Deprecated.CTProtectedRange
getProtectedRangeArray(int i)
Gets ith "protectedRange" elementjava.util.List<CTProtectedRange>
getProtectedRangeList()
Gets a List of "protectedRange" elementsCTProtectedRange
insertNewProtectedRange(int i)
Inserts and returns a new empty value (as xml) as the ith "protectedRange" elementvoid
removeProtectedRange(int i)
Removes the ith "protectedRange" elementvoid
setProtectedRangeArray(int i, CTProtectedRange protectedRange)
Sets ith "protectedRange" elementvoid
setProtectedRangeArray(CTProtectedRange[] protectedRangeArray)
Sets array of all "protectedRange" elementint
sizeOfProtectedRangeArray()
Returns number of "protectedRange" element-
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
-
getProtectedRangeList
java.util.List<CTProtectedRange> getProtectedRangeList()
Gets a List of "protectedRange" elements
-
getProtectedRangeArray
@Deprecated CTProtectedRange[] getProtectedRangeArray()
Deprecated.Gets array of all "protectedRange" elements
-
getProtectedRangeArray
CTProtectedRange getProtectedRangeArray(int i)
Gets ith "protectedRange" element
-
sizeOfProtectedRangeArray
int sizeOfProtectedRangeArray()
Returns number of "protectedRange" element
-
setProtectedRangeArray
void setProtectedRangeArray(CTProtectedRange[] protectedRangeArray)
Sets array of all "protectedRange" element
-
setProtectedRangeArray
void setProtectedRangeArray(int i, CTProtectedRange protectedRange)
Sets ith "protectedRange" element
-
insertNewProtectedRange
CTProtectedRange insertNewProtectedRange(int i)
Inserts and returns a new empty value (as xml) as the ith "protectedRange" element
-
addNewProtectedRange
CTProtectedRange addNewProtectedRange()
Appends and returns a new empty value (as xml) as the last "protectedRange" element
-
removeProtectedRange
void removeProtectedRange(int i)
Removes the ith "protectedRange" element
-
-