java.lang.Object
java.lang.Record
com.inductiveautomation.ignition.common.i18n.translation.KeyHashRule

public record KeyHashRule(boolean caseInsensitive, boolean ignoreWS, boolean ignorePunct, boolean ignoreTags) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
     
    KeyHashRule(boolean caseInsensitive, boolean ignoreWS, boolean ignorePunct, boolean ignoreTags)
    Creates an instance of a KeyHashRule record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns the value of the caseInsensitive record component.
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    getKey(String term)
     
    final int
    Returns a hash code value for this object.
    boolean
    Returns the value of the ignorePunct record component.
    boolean
    Returns the value of the ignoreTags record component.
    boolean
    Returns the value of the ignoreWS record component.
    boolean
    matches(String keyA, String keyB)
     
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • KeyHashRule

      public KeyHashRule()
    • KeyHashRule

      public KeyHashRule(boolean caseInsensitive, boolean ignoreWS, boolean ignorePunct, boolean ignoreTags)
      Creates an instance of a KeyHashRule record class.
      Parameters:
      caseInsensitive - the value for the caseInsensitive record component
      ignoreWS - the value for the ignoreWS record component
      ignorePunct - the value for the ignorePunct record component
      ignoreTags - the value for the ignoreTags record component
  • Method Details

    • createDefault

      public static KeyHashRule createDefault()
    • getKey

      public String getKey(String term)
    • matches

      public boolean matches(String keyA, String keyB)
    • 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 '=='.
      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.
    • caseInsensitive

      public boolean caseInsensitive()
      Returns the value of the caseInsensitive record component.
      Returns:
      the value of the caseInsensitive record component
    • ignoreWS

      public boolean ignoreWS()
      Returns the value of the ignoreWS record component.
      Returns:
      the value of the ignoreWS record component
    • ignorePunct

      public boolean ignorePunct()
      Returns the value of the ignorePunct record component.
      Returns:
      the value of the ignorePunct record component
    • ignoreTags

      public boolean ignoreTags()
      Returns the value of the ignoreTags record component.
      Returns:
      the value of the ignoreTags record component