Record Class CliParameter.Valid

java.lang.Object
java.lang.Record
org.consensusj.jsonrpc.cli.CliParameter.Valid
Record Components:
source - source JSON string
object - parsed object
All Implemented Interfaces:
CliParameter
Enclosing interface:
CliParameter

public static record CliParameter.Valid(String source, Object object) extends Record implements CliParameter
Implementation for Valid objects
  • Constructor Details

    • Valid

      public Valid(String source, Object object)
      Creates an instance of a Valid record class.
      Parameters:
      source - the value for the source record component
      object - the value for the object record component
  • Method Details

    • stream

      public Stream<Object> stream()
      Description copied from interface: CliParameter
      Stream zero or 1 valid objects.

      This allows .flatMap(CliParameter::stream) to filter invalid and unwrap valid objects.

      Specified by:
      stream in interface CliParameter
      Returns:
      A stream of zero or one valid objects.
    • 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.
    • source

      public String source()
      Returns the value of the source record component.
      Specified by:
      source in interface CliParameter
      Returns:
      the value of the source record component
    • object

      public Object object()
      Returns the value of the object record component.
      Returns:
      the value of the object record component