| java.lang.Object | ||
| ↳ | java.util.zip.ZipEntry | |
| ↳ | java.util.jar.JarEntry | |
Represents a single file in a JAR archive together with the manifest attributes and digital signatures associated with it.
| [Expand] 
           Inherited Constants
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class java.util.zip.ZipEntry | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Creates a new 
            JarEntrynamed name. | ||||||||||
|  | 
           Creates a new 
            JarEntryusing the values obtained from entry. | ||||||||||
|  | 
           Create a new 
            JarEntryusing the values obtained from the argument. | ||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Returns the 
            Attributesobject associated with this entry ornullif none exists. | ||||||||||
|  | 
           Returns an array of 
            CertificateObjects associated with this entry ornullif none exists. | ||||||||||
|  | 
           Returns the code signers for the digital signatures associated with the JAR file.
           | ||||||||||
| [Expand] 
           Inherited Methods
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class java.util.zip.ZipEntry | |||||||||||
|  From class java.lang.Object | |||||||||||
Creates a new JarEntry named name.
| name | The name of the new JarEntry. | 
|---|
Creates a new JarEntry using the values obtained from entry.
| entry | The ZipEntry to obtain values from. | 
|---|
Create a new JarEntry using the values obtained from the argument.
| je | The JarEntryto obtain values from. | 
|---|
Returns the Attributes object associated with this entry or null if none exists.
Attributes for this entry.| IOException | If an error occurs obtaining the Attributes. | 
|---|
Returns an array of Certificate Objects associated with this entry or null if none exists. Make sure that the everything is read from the input stream before calling this method, or else the method returns null.
Returns the code signers for the digital signatures associated with the JAR file. If there is no such code signer, it returns null. Make sure that the everything is read from the input stream before calling this method, or else the method returns null.