Record Class SourcedDescriptor

java.lang.Object
java.lang.Record
io.gdcc.spi.meta.descriptor.SourcedDescriptor
Record Components:
sourceLocation - the path to the source location of the descriptor, must not be null
plugin - the Descriptor representing the plugin information, must not be null

public record SourcedDescriptor(Path sourceLocation, Descriptor plugin) extends Record
A record representing a descriptor that is sourced from a specific location. Combines information about a descriptor and its source location.
  • Constructor Details

    • SourcedDescriptor

      public SourcedDescriptor(Path sourceLocation, Descriptor plugin)
      Creates an instance of a SourcedDescriptor record class.
      Parameters:
      sourceLocation - the value for the sourceLocation record component
      plugin - the value for the plugin record component
  • Method Details

    • isOfKind

      public boolean isOfKind(Class<?> contractClass)
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • sourceLocation

      public Path sourceLocation()
      Returns the value of the sourceLocation record component.
      Returns:
      the value of the sourceLocation record component
    • plugin

      public Descriptor plugin()
      Returns the value of the plugin record component.
      Returns:
      the value of the plugin record component