Package com.scene7.ipsapi
Class ZipEntry
- java.lang.Object
-
- com.scene7.ipsapi.ZipEntry
-
public class ZipEntry extends Object
Java 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 long
getCompressedSize()
Gets the value of the compressedSize property.XMLGregorianCalendar
getLastModified()
Gets the value of the lastModified property.String
getName()
Gets the value of the name property.long
getUncompressedSize()
Gets the value of the uncompressedSize property.boolean
isIsDirectory()
Gets the value of the isDirectory property.void
setCompressedSize(long value)
Sets the value of the compressedSize property.void
setIsDirectory(boolean value)
Sets the value of the isDirectory property.void
setLastModified(XMLGregorianCalendar value)
Sets the value of the lastModified property.void
setName(String value)
Sets the value of the name property.void
setUncompressedSize(long value)
Sets the value of the uncompressedSize property.
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(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 XMLGregorianCalendar getLastModified()
Gets the value of the lastModified property.- Returns:
- possible object is
XMLGregorianCalendar
-
setLastModified
public void setLastModified(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.
-
-