Record Class Dissect.Parser

java.lang.Object
java.lang.Record
org.elasticsearch.xpack.esql.plan.logical.Dissect.Parser
All Implemented Interfaces:
Writeable
Enclosing class:
Dissect

public static record Dissect.Parser(String pattern, String appendSeparator, DissectParser parser) extends Record implements Writeable
  • Constructor Details

    • Parser

      public Parser(String pattern, String appendSeparator, DissectParser parser)
      Creates an instance of a Parser record class.
      Parameters:
      pattern - the value for the pattern record component
      appendSeparator - the value for the appendSeparator record component
      parser - the value for the parser record component
  • Method Details

    • readFrom

      public static Dissect.Parser readFrom(StreamInput in) throws IOException
      Throws:
      IOException
    • writeTo

      public void writeTo(StreamOutput out) throws IOException
      Specified by:
      writeTo in interface Writeable
      Throws:
      IOException
    • keyAttributes

      public List<Attribute> keyAttributes(Source src)
    • equals

      public boolean equals(Object other)
      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:
      other - the object with which to compare
      Returns:
      true if this object is the same as the other argument; false otherwise.
    • hashCode

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

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

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

      public DissectParser parser()
      Returns the value of the parser record component.
      Returns:
      the value of the parser record component