Class 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 Detail

      • ZipEntry

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