Record Class KeyPairImages
java.lang.Object
java.lang.Record
org.example.chapter1_small_problems.KeyPairImages
- Record Components:
image- encrypted imagebytes- dummy key for decryption
Key pair for image UnbreakableEncrypt.
-
Constructor Summary
ConstructorsConstructorDescriptionKeyPairImages(BufferedImage image, byte[][] bytes) Creates an instance of aKeyPairImagesrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbyte[][]bytes()Returns the value of thebytesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.image()Returns the value of theimagerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
image
Returns the value of theimagerecord component.- Returns:
- the value of the
imagerecord component
-
bytes
public byte[][] bytes()Returns the value of thebytesrecord component.- Returns:
- the value of the
bytesrecord component
-