Record Class MessageTypeEnumFilter

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

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

    • MessageTypeEnumFilter

      Creates an instance of a MessageTypeEnumFilter 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 MessageTypeEnum eq()
      Returns the value of the eq record component.
      Returns:
      the value of the eq record component
    • ne

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

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

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

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

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

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

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