Package com.scene7.ipsapi
Class ZipEntry
- java.lang.Object
 - 
- com.scene7.ipsapi.ZipEntry
 
 
- 
public class ZipEntry extends java.lang.ObjectJava class for ZipEntry complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ZipEntry"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="isDirectory" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="compressedSize" type="{http://www.w3.org/2001/XMLSchema}long"/> <element name="uncompressedSize" type="{http://www.w3.org/2001/XMLSchema}long"/> </sequence> </restriction> </complexContent> </complexType> 
- 
- 
Constructor Summary
Constructors Constructor Description ZipEntry() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCompressedSize()Gets the value of the compressedSize property.javax.xml.datatype.XMLGregorianCalendargetLastModified()Gets the value of the lastModified property.java.lang.StringgetName()Gets the value of the name property.longgetUncompressedSize()Gets the value of the uncompressedSize property.booleanisIsDirectory()Gets the value of the isDirectory property.voidsetCompressedSize(long value)Sets the value of the compressedSize property.voidsetIsDirectory(boolean value)Sets the value of the isDirectory property.voidsetLastModified(javax.xml.datatype.XMLGregorianCalendar value)Sets the value of the lastModified property.voidsetName(java.lang.String value)Sets the value of the name property.voidsetUncompressedSize(long value)Sets the value of the uncompressedSize property. 
 - 
 
- 
- 
Method Detail
- 
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
 - possible object is
     
String 
 
- 
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
 value- allowed object isString
 
- 
isIsDirectory
public boolean isIsDirectory()
Gets the value of the isDirectory property. 
- 
setIsDirectory
public void setIsDirectory(boolean value)
Sets the value of the isDirectory property. 
- 
getLastModified
public javax.xml.datatype.XMLGregorianCalendar getLastModified()
Gets the value of the lastModified property.- Returns:
 - possible object is
     
XMLGregorianCalendar 
 
- 
setLastModified
public void setLastModified(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the lastModified property.- Parameters:
 value- allowed object isXMLGregorianCalendar
 
- 
getCompressedSize
public long getCompressedSize()
Gets the value of the compressedSize property. 
- 
setCompressedSize
public void setCompressedSize(long value)
Sets the value of the compressedSize property. 
- 
getUncompressedSize
public long getUncompressedSize()
Gets the value of the uncompressedSize property. 
- 
setUncompressedSize
public void setUncompressedSize(long value)
Sets the value of the uncompressedSize property. 
 - 
 
 -