Package cdc.issues

Record Class FormalParamsImpl

java.lang.Object
java.lang.Record
cdc.issues.FormalParamsImpl
All Implemented Interfaces:
FormalParams

record FormalParamsImpl(Map<String,FormalParam> map) extends Record implements FormalParams
  • Constructor Details

    • FormalParamsImpl

      FormalParamsImpl(Map<String,FormalParam> map)
      Creates an instance of a FormalParamsImpl record class.
      Parameters:
      map - the value for the map record component
  • Method Details

    • toString

      public 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
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface FormalParams
      Returns:
      true if there are no parameters.
    • getNames

      public Set<String> getNames()
      Specified by:
      getNames in interface FormalParams
      Returns:
      The parameter names.
    • getSortedNames

      public List<String> getSortedNames()
      Specified by:
      getSortedNames in interface FormalParams
      Returns:
      The sorted parameter names.
    • getSortedParams

      public List<FormalParam> getSortedParams()
      Specified by:
      getSortedParams in interface FormalParams
      Returns:
      The sorted parameters.
    • getParam

      public FormalParam getParam(String name)
      Specified by:
      getParam in interface FormalParams
      Parameters:
      name - The parameter name.
      Returns:
      The parameter named name.
    • getDescription

      public String getDescription(String name)
      Specified by:
      getDescription in interface FormalParams
      Parameters:
      name - The parameter name.
      Returns:
      The description of parameter named name.
    • 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.
    • map

      public Map<String,FormalParam> map()
      Returns the value of the map record component.
      Returns:
      the value of the map record component