Record Class CAFileType.CAFileWithoutData

java.lang.Object
java.lang.Record
com.io7m.cardant.model.CAFileType.CAFileWithoutData
Record Components:
id - The ID
description - The description
mediaType - The media type
size - The size in bytes
hashAlgorithm - The hash algorithm
hashValue - The hash value
All Implemented Interfaces:
CAFileType, Comparable<CAFileType>
Enclosing interface:
CAFileType

public static record CAFileType.CAFileWithoutData(CAFileID id, String description, String mediaType, long size, String hashAlgorithm, String hashValue) extends Record implements CAFileType
A file without data.
  • Constructor Details

    • CAFileWithoutData

      public CAFileWithoutData(CAFileID id, String description, String mediaType, long size, String hashAlgorithm, String hashValue)
      A file without data.
  • Method Details

    • dataOptional

      public Optional<CAByteArray> dataOptional()
      Specified by:
      dataOptional in interface CAFileType
      Returns:
      The data, if any
    • withoutData

      public CAFileType.CAFileWithoutData withoutData()
      Specified by:
      withoutData in interface CAFileType
      Returns:
      The file without data
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • id

      public CAFileID id()
      Returns the value of the id record component.
      Specified by:
      id in interface CAFileType
      Returns:
      the value of the id record component
    • description

      public String description()
      Returns the value of the description record component.
      Specified by:
      description in interface CAFileType
      Returns:
      the value of the description record component
    • mediaType

      public String mediaType()
      Returns the value of the mediaType record component.
      Specified by:
      mediaType in interface CAFileType
      Returns:
      the value of the mediaType record component
    • size

      public long size()
      Returns the value of the size record component.
      Specified by:
      size in interface CAFileType
      Returns:
      the value of the size record component
    • hashAlgorithm

      public String hashAlgorithm()
      Returns the value of the hashAlgorithm record component.
      Specified by:
      hashAlgorithm in interface CAFileType
      Returns:
      the value of the hashAlgorithm record component
    • hashValue

      public String hashValue()
      Returns the value of the hashValue record component.
      Specified by:
      hashValue in interface CAFileType
      Returns:
      the value of the hashValue record component