public static interface Transformer.Entry
Entry is a single entry representing an entry in a JAR file.| Modifier and Type | Field and Description |
|---|---|
static long |
STABLE_TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getData()
Returns the bytes associated with this entry.
|
java.lang.String |
getName()
Returns the full name of this entry, including folders and file extension,
relative to the root of the JAR file.
|
long |
getTime()
Returns the last modification time of this entry.
|
Transformer.Entry |
process(Transformer transformer)
Runs the provided transformer over this entry and returns the transformed entry.
|
static final long STABLE_TIMESTAMP
long getTime()
ZipEntry.getTime()java.lang.String getName()
ZipEntry.getName()byte[] getData()
Transformer.Entry process(Transformer transformer)
transformer - the transformer to run