Record Class Filter

java.lang.Object
java.lang.Record
org.mastodon4j.core.api.entities.Filter

public record Filter(String id, String title, List<String> context, ZonedDateTime expires_at, String filter_action, List<FilterKeyword> keywords, List<FilterStatus> statuses) extends Record
  • Constructor Details

    • Filter

      public Filter(String id, String title, List<String> context, ZonedDateTime expires_at, String filter_action, List<FilterKeyword> keywords, List<FilterStatus> statuses)
      Creates an instance of a Filter record class.
      Parameters:
      id - the value for the id record component
      title - the value for the title record component
      context - the value for the context record component
      expires_at - the value for the expires_at record component
      filter_action - the value for the filter_action record component
      keywords - the value for the keywords record component
      statuses - the value for the statuses 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.
    • id

      public String id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • title

      public String title()
      Returns the value of the title record component.
      Returns:
      the value of the title record component
    • context

      public List<String> context()
      Returns the value of the context record component.
      Returns:
      the value of the context record component
    • expires_at

      public ZonedDateTime expires_at()
      Returns the value of the expires_at record component.
      Returns:
      the value of the expires_at record component
    • filter_action

      public String filter_action()
      Returns the value of the filter_action record component.
      Returns:
      the value of the filter_action record component
    • keywords

      public List<FilterKeyword> keywords()
      Returns the value of the keywords record component.
      Returns:
      the value of the keywords record component
    • statuses

      public List<FilterStatus> statuses()
      Returns the value of the statuses record component.
      Returns:
      the value of the statuses record component