Schnittstelle IPair<E1,E2>

Typparameter:
E1 - is the type of the element1 of a IPair.
E2 - is the type of the element2 of a IPair.
Alle bekannten Implementierungsklassen:
Pair

public interface IPair<E1,E2>
A IPair contains 2 elements.
Version:
2022-07-02
Autor:
Silvan Wyss
  • Methodendetails

    • getStoredElement1

      E1 getStoredElement1()
      Gibt zurück:
      the element1 of the current IPair.
    • getStoredElement2

      E2 getStoredElement2()
      Gibt zurück:
      the element2 of the current IPair.
    • hasElement1

      boolean hasElement1(Object object)
      Parameter:
      object -
      Gibt zurück:
      true if the element1 of the current IPair is the given object.
    • hasElement2

      boolean hasElement2(Object object)
      Parameter:
      object -
      Gibt zurück:
      true if the element2 of the current IPair is the given object.