Class ZipEntry


  • public class ZipEntry
    extends java.lang.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.
      javax.xml.datatype.XMLGregorianCalendar getLastModified()
      Gets the value of the lastModified property.
      java.lang.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​(javax.xml.datatype.XMLGregorianCalendar value)
      Sets the value of the lastModified property.
      void setName​(java.lang.String value)
      Sets the value of the name property.
      void setUncompressedSize​(long value)
      Sets the value of the uncompressedSize property.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ZipEntry

        public ZipEntry()
    • 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 is String
      • 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 is XMLGregorianCalendar
      • 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.