Interface Identifier

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean equals​(Object obj)
      Identifier is a data object, equals is based just on getID()
      Object getID()
      Returns the identifier itself.
      int hashCode()
      Identifier is a data object, hashCode is based just on getID()
      boolean matches​(Object object)
      Determines if the id of an object matches the value of the identifier.
      String toString()
      Returns a string representation of the identifier.
    • Method Detail

      • getID

        Object getID()
        Returns the identifier itself.
      • matches

        boolean matches​(Object object)
        Determines if the id of an object matches the value of the identifier.
        Parameters:
        object - The object to perform the test against.
        Returns:
        true if a match, otherwise false.
      • equals

        boolean equals​(Object obj)
        Identifier is a data object, equals is based just on getID()
        Overrides:
        equals in class Object
        Returns:
        true if obj is an Identifier with the same getID()
      • hashCode

        int hashCode()
        Identifier is a data object, hashCode is based just on getID()
        Overrides:
        hashCode in class Object
        Returns:
        hashCode based on getID()
      • toString

        String toString()
        Returns a string representation of the identifier.
        Overrides:
        toString in class Object
        Returns:
        getID().toString()