Record Class ConstantValue

java.lang.Object
java.lang.Record
io.github.torand.openapi2java.model.ConstantValue
Record Components:
value - the constant value.
imports - the imports required by the constant value, if any.
All Implemented Interfaces:
ImportsSupplier

public record ConstantValue(String value, ImportInfo imports) extends Record implements ImportsSupplier
Describes a constant value.
  • Constructor Details

    • ConstantValue

      public ConstantValue(String value)
      Constructs an ConstantValue object.
      Parameters:
      value - the constant value.
    • ConstantValue

      public ConstantValue(String value, ImportInfo imports)
      Creates an instance of a ConstantValue record class.
      Parameters:
      value - the value for the value record component
      imports - the value for the imports record component
  • Method Details

    • withStaticImport

      public ConstantValue withStaticImport(String staticImport)
      Returns a new ConstantValue object with specified static import added.
      Parameters:
      staticImport - the static import to add.
      Returns:
      the new and updated ConstantValue object.
    • 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.
    • value

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

      public ImportInfo imports()
      Returns the value of the imports record component.
      Specified by:
      imports in interface ImportsSupplier
      Returns:
      the value of the imports record component