org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apache-poi-ooxml Show documentation
Show all versions of apache-poi-ooxml Show documentation
The Apache Commons Codec package contains simple encoder and decoders for
various formats such as Base64 and Hexadecimal. In addition to these
widely used encoders and decoders, the codec package also maintains a
collection of phonetic encoding utilities.
/*
* XML Type: CT_DateTime
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.spreadsheetml.x2006.main;
/**
* An XML CT_DateTime(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTDateTime extends org.apache.xmlbeans.XmlObject
{
org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
Factory.getTypeLoader().resolveHandle("ctdatetime86a4type");
/**
* Gets a List of "x" elements
*/
java.util.List getXList();
/**
* Gets array of all "x" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX[] getXArray();
/**
* Gets ith "x" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX getXArray(int i);
/**
* Returns number of "x" element
*/
int sizeOfXArray();
/**
* Sets array of all "x" element
*/
void setXArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX[] xArray);
/**
* Sets ith "x" element
*/
void setXArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX x);
/**
* Inserts and returns a new empty value (as xml) as the ith "x" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX insertNewX(int i);
/**
* Appends and returns a new empty value (as xml) as the last "x" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX addNewX();
/**
* Removes the ith "x" element
*/
void removeX(int i);
/**
* Gets the "v" attribute
*/
java.util.Calendar getV();
/**
* Gets (as xml) the "v" attribute
*/
org.apache.xmlbeans.XmlDateTime xgetV();
/**
* Sets the "v" attribute
*/
void setV(java.util.Calendar v);
/**
* Sets (as xml) the "v" attribute
*/
void xsetV(org.apache.xmlbeans.XmlDateTime v);
/**
* Gets the "u" attribute
*/
boolean getU();
/**
* Gets (as xml) the "u" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetU();
/**
* True if has "u" attribute
*/
boolean isSetU();
/**
* Sets the "u" attribute
*/
void setU(boolean u);
/**
* Sets (as xml) the "u" attribute
*/
void xsetU(org.apache.xmlbeans.XmlBoolean u);
/**
* Unsets the "u" attribute
*/
void unsetU();
/**
* Gets the "f" attribute
*/
boolean getF();
/**
* Gets (as xml) the "f" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetF();
/**
* True if has "f" attribute
*/
boolean isSetF();
/**
* Sets the "f" attribute
*/
void setF(boolean f);
/**
* Sets (as xml) the "f" attribute
*/
void xsetF(org.apache.xmlbeans.XmlBoolean f);
/**
* Unsets the "f" attribute
*/
void unsetF();
/**
* Gets the "c" attribute
*/
java.lang.String getC();
/**
* Gets (as xml) the "c" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STXstring xgetC();
/**
* True if has "c" attribute
*/
boolean isSetC();
/**
* Sets the "c" attribute
*/
void setC(java.lang.String c);
/**
* Sets (as xml) the "c" attribute
*/
void xsetC(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STXstring c);
/**
* Unsets the "c" attribute
*/
void unsetC();
/**
* Gets the "cp" attribute
*/
long getCp();
/**
* Gets (as xml) the "cp" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetCp();
/**
* True if has "cp" attribute
*/
boolean isSetCp();
/**
* Sets the "cp" attribute
*/
void setCp(long cp);
/**
* Sets (as xml) the "cp" attribute
*/
void xsetCp(org.apache.xmlbeans.XmlUnsignedInt cp);
/**
* Unsets the "cp" attribute
*/
void unsetCp();
/**
* A factory class with static methods for creating instances
* of this type.
*/
final class Factory
{
private static synchronized org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder getTypeLoader() {
return org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem;
}
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime newInstance() {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().newInstance( type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( xmlAsString, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( file, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( file, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( u, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( u, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( is, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( is, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( r, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( r, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( sr, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( sr, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( node, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDateTime) getTypeLoader().parse( node, type, options ); }
private Factory() { } // No instance of this class allowed
}
}