Class IdentifiedFile
- java.lang.Object
-
- io.github.mkoncek.classpathless.api.IdentifiedFile
-
- Direct Known Subclasses:
IdentifiedBytecode
,IdentifiedSource
public class IdentifiedFile extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private ClassIdentifier
classIdentifier
private byte[]
file
-
Constructor Summary
Constructors Constructor Description IdentifiedFile(ClassIdentifier classIdentifier, byte[] file)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
ClassIdentifier
getClassIdentifier()
byte[]
getFile()
int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
classIdentifier
private final ClassIdentifier classIdentifier
-
file
private final byte[] file
-
-
Constructor Detail
-
IdentifiedFile
public IdentifiedFile(ClassIdentifier classIdentifier, byte[] file)
-
-
Method Detail
-
getClassIdentifier
public ClassIdentifier getClassIdentifier()
-
getFile
public byte[] getFile()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-