| Package | nochump.util.zip |
| Class | public class ZipEntry |
| Inheritance | ZipEntry Object |
| Property | Defined By | ||
|---|---|---|---|
| comment : String
Gets the extra data. | ZipEntry | ||
| compressedSize : int
Gets the size of the compressed data. | ZipEntry | ||
| crc : uint
Gets the crc of the uncompressed data. | ZipEntry | ||
| extra : ByteArray
Gets the extra data. | ZipEntry | ||
| method : int
Gets the compression method. | ZipEntry | ||
| name : String [read-only]
Returns the entry name. | ZipEntry | ||
| size : int
Gets the size of the uncompressed data. | ZipEntry | ||
| time : Number
Gets the time of last modification of the entry. | ZipEntry | ||
| Method | Defined By | ||
|---|---|---|---|
ZipEntry(name:String)
Creates a zip entry with the given name. | ZipEntry | ||
isDirectory():Boolean
Gets true, if the entry is a directory. | ZipEntry | ||
toString():String
Gets the string representation of this ZipEntry. | ZipEntry | ||
| comment | property |
comment:StringGets the extra data.
public function get comment():String public function set comment(value:String):void| compressedSize | property |
compressedSize:intGets the size of the compressed data.
public function get compressedSize():int public function set compressedSize(value:int):void| crc | property |
crc:uintGets the crc of the uncompressed data.
public function get crc():uint public function set crc(value:uint):void| extra | property |
extra:ByteArrayGets the extra data.
public function get extra():ByteArray public function set extra(value:ByteArray):void| method | property |
method:intGets the compression method.
public function get method():int public function set method(value:int):void| name | property |
name:String [read-only] Returns the entry name. The path components in the entry are always separated by slashes ('/').
public function get name():String| size | property |
size:intGets the size of the uncompressed data.
public function get size():int public function set size(value:int):void| time | property |
time:NumberGets the time of last modification of the entry.
public function get time():Number public function set time(value:Number):void| ZipEntry | () | Constructor |
public function ZipEntry(name:String)Creates a zip entry with the given name.
Parametersname:String — the name. May include directory components separated
by '/'.
|
| isDirectory | () | method |
public function isDirectory():BooleanGets true, if the entry is a directory. This is solely determined by the name, a trailing slash '/' marks a directory.
ReturnsBoolean |
| toString | () | method |
public function toString():StringGets the string representation of this ZipEntry. This is just the name as returned by name.
ReturnsString |