public class Data extends ExtensionPoint
| Modifier and Type | Class and Description |
|---|---|
static class |
Data.InsertionMode
Insertion mode.
|
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandlerAbstractExtension.AttributesHandlerxmlBloblocalName, namespace| Constructor and Description |
|---|
Data()
Default mutable constructor.
|
Data(Data.InsertionMode insertionMode,
java.lang.Integer numberOfRows,
java.lang.Integer startIndex)
Immutable constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addColumn(Column column)
Adds a new column.
|
protected void |
consumeAttributes(AttributeHelper helper)
Consumes attributes from the attribute helper.
|
void |
declareExtensions(ExtensionProfile extProfile)
Declares the set of expected Extension types for an ExtensionPoint within
the target extension profile.
|
java.util.List<Column> |
getColumns()
Returns the columns.
|
static ExtensionDescription |
getDefaultDescription(boolean required,
boolean repeatable)
Returns the extension description, specifying whether it is required, and
whether it is repeatable.
|
Data.InsertionMode |
getInsertionMode()
Returns the insertion mode.
|
java.lang.Integer |
getNumberOfRows()
Returns the number of rows in the data section.
|
java.lang.Integer |
getStartIndex()
Returns the index of the first row of the data section (inclusive).
|
boolean |
hasColumns()
Returns whether it has the columns.
|
boolean |
hasInsertionMode()
Returns whether it has the insertion mode.
|
boolean |
hasNumberOfRows()
Returns whether it has the number of rows in the data section.
|
boolean |
hasStartIndex()
Returns whether it has the index of the first row of the data section
(inclusive).
|
protected void |
putAttributes(AttributeGenerator generator)
Puts attributes into the attribute generator.
|
void |
setInsertionMode(Data.InsertionMode insertionMode)
Sets the insertion mode.
|
void |
setNumberOfRows(java.lang.Integer numberOfRows)
Sets the number of rows in the data section.
|
void |
setStartIndex(java.lang.Integer startIndex)
Sets the index of the first row of the data section (inclusive).
|
java.lang.String |
toString() |
protected void |
validate()
Checks the attributes to see if there are any problems.
|
addExtension, addExtension, addRepeatingExtension, addRepeatingExtension, checkRequiredExtensions, createExtensionInstance, generate, generateCumulativeXmlBlob, generateExtensions, generateStartElement, getExtension, getExtensionDescription, getExtensionHandler, getExtensions, getHandler, getManifest, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, initializeArbitraryXml, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit, visitChild, visitChildrendisableStrictValidation, enableStrictValidation, eq, generate, generateAttributes, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, sameClassAs, setImmutable, throwExceptionForMissingAttribute, throwExceptionIfImmutablepublic Data()
public Data(Data.InsertionMode insertionMode, java.lang.Integer numberOfRows, java.lang.Integer startIndex)
insertionMode - insertion mode.numberOfRows - number of rows in the data section.startIndex - index of the first row of the data section (inclusive).public void declareExtensions(ExtensionProfile extProfile)
ExtensionPointdeclareExtensions in class ExtensionPointextProfile - the ExtensionProfile to initialize.public java.util.List<Column> getColumns()
public void addColumn(Column column)
column - columnpublic boolean hasColumns()
public Data.InsertionMode getInsertionMode()
public void setInsertionMode(Data.InsertionMode insertionMode)
insertionMode - insertion mode or null to resetpublic boolean hasInsertionMode()
public java.lang.Integer getNumberOfRows()
public void setNumberOfRows(java.lang.Integer numberOfRows)
numberOfRows - number of rows in the data section or null
to resetpublic boolean hasNumberOfRows()
public java.lang.Integer getStartIndex()
public void setStartIndex(java.lang.Integer startIndex)
startIndex - index of the first row of the data section (inclusive) or
null to resetpublic boolean hasStartIndex()
protected void validate()
AbstractExtensionvalidate in class AbstractExtensionpublic static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
required - whether it is requiredrepeatable - whether it is repeatableprotected void putAttributes(AttributeGenerator generator)
AbstractExtensionAbstractExtension.generate(XmlWriter,ExtensionProfile). Default implementation
does nothing, though generally this is discouraged unless there really are
no attributes.putAttributes in class AbstractExtensiongenerator - attribute generatorprotected void consumeAttributes(AttributeHelper helper) throws ParseException
AbstractExtensionAttributeHelper.consumeContent(boolean) to consume the element's text
content. Called from AbstractExtension.getHandler(com.google.gdata.data.ExtensionProfile, java.lang.String, java.lang.String, org.xml.sax.Attributes). Default implementation does
nothing, though generally this is discouraged unless there really are no
attributes.consumeAttributes in class AbstractExtensionhelper - attribute helperParseException - any parsing exceptionpublic java.lang.String toString()
toString in class java.lang.Object