Record Class Maven.Builder

java.lang.Object
java.lang.Record
com.github.sormuras.bach.external.Maven.Builder
Enclosing class:
Maven

public static record Maven.Builder(String repository, String group, String artifact, String version, String classifier, String type) extends Record
A builder of Maven coordinates.
  • Constructor Details

    • Builder

      public Builder(String group, String artifact, String version)
    • Builder

      public Builder(String repository, String group, String artifact, String version, String classifier, String type)
      Creates an instance of a Builder record class.
      Parameters:
      repository - the value for the repository record component
      group - the value for the group record component
      artifact - the value for the artifact record component
      version - the value for the version record component
      classifier - the value for the classifier record component
      type - the value for the type record component
  • Method Details

    • build

      public String build()
    • repository

      public Maven.Builder repository(String repository)
    • group

      public Maven.Builder group(String group)
    • artifact

      public Maven.Builder artifact(String artifact)
    • version

      public Maven.Builder version(String version)
    • classifier

      public Maven.Builder classifier(String classifier)
    • type

      public Maven.Builder type(String type)
    • 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.
    • repository

      public String repository()
      Returns the value of the repository record component.
      Returns:
      the value of the repository record component
    • group

      public String group()
      Returns the value of the group record component.
      Returns:
      the value of the group record component
    • artifact

      public String artifact()
      Returns the value of the artifact record component.
      Returns:
      the value of the artifact record component
    • version

      public String version()
      Returns the value of the version record component.
      Returns:
      the value of the version record component
    • classifier

      public String classifier()
      Returns the value of the classifier record component.
      Returns:
      the value of the classifier record component
    • type

      public String type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component