Package com.scene7.ipsapi
Class ZipEntry
java.lang.Object
com.scene7.ipsapi.ZipEntry
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 -
Method Summary
Modifier and TypeMethodDescriptionlongGets the value of the compressedSize property.Gets the value of the lastModified property.getName()Gets the value of the name property.longGets the value of the uncompressedSize property.booleanGets 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.voidSets the value of the lastModified property.voidSets the value of the name property.voidsetUncompressedSize(long value) Sets the value of the uncompressedSize property.
-
Constructor Details
-
ZipEntry
public ZipEntry()
-
-
Method Details
-
getName
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
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
Gets the value of the lastModified property.- Returns:
- possible object is
XMLGregorianCalendar
-
setLastModified
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.
-