Record Class SplitTypeEnumFilter

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.gql.SplitTypeEnumFilter

public record SplitTypeEnumFilter(SplitTypeEnum eq, SplitTypeEnum ne, SplitTypeEnum gt, SplitTypeEnum lt, SplitTypeEnum ge, SplitTypeEnum le, List<SplitTypeEnum> in, List<SplitTypeEnum> notIn) extends Record
  • Constructor Details

    • SplitTypeEnumFilter

      public SplitTypeEnumFilter(SplitTypeEnum eq, SplitTypeEnum ne, SplitTypeEnum gt, SplitTypeEnum lt, SplitTypeEnum ge, SplitTypeEnum le, List<SplitTypeEnum> in, List<SplitTypeEnum> notIn)
      Creates an instance of a SplitTypeEnumFilter record class.
      Parameters:
      eq - the value for the eq record component
      ne - the value for the ne record component
      gt - the value for the gt record component
      lt - the value for the lt record component
      ge - the value for the ge record component
      le - the value for the le record component
      in - the value for the in record component
      notIn - the value for the notIn record component
  • Method Details

    • 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.
    • eq

      public SplitTypeEnum eq()
      Returns the value of the eq record component.
      Returns:
      the value of the eq record component
    • ne

      public SplitTypeEnum ne()
      Returns the value of the ne record component.
      Returns:
      the value of the ne record component
    • gt

      public SplitTypeEnum gt()
      Returns the value of the gt record component.
      Returns:
      the value of the gt record component
    • lt

      public SplitTypeEnum lt()
      Returns the value of the lt record component.
      Returns:
      the value of the lt record component
    • ge

      public SplitTypeEnum ge()
      Returns the value of the ge record component.
      Returns:
      the value of the ge record component
    • le

      public SplitTypeEnum le()
      Returns the value of the le record component.
      Returns:
      the value of the le record component
    • in

      public List<SplitTypeEnum> in()
      Returns the value of the in record component.
      Returns:
      the value of the in record component
    • notIn

      public List<SplitTypeEnum> notIn()
      Returns the value of the notIn record component.
      Returns:
      the value of the notIn record component