Klasse IterableExaminer

java.lang.Object
ch.nolix.core.independent.iterabletool.IterableExaminer
Alle implementierten Schnittstellen:
IIterableExaminer

public final class IterableExaminer extends Object implements IIterableExaminer
Version:
2025-02-07
Autor:
Silvan Wyss
  • Konstruktordetails

    • IterableExaminer

      public IterableExaminer()
  • Methodendetails

    • containsElement

      public boolean containsElement(Iterable<?> iterable, Object element)
      Angegeben von:
      containsElement in Schnittstelle IIterableExaminer
      Parameter:
      iterable -
      element -
      Gibt zurück:
      true if the given iterable contains the given element, false otherwise.
    • containsElementMultipleTimes

      public boolean containsElementMultipleTimes(Iterable<?> iterable, Object element)
      Angegeben von:
      containsElementMultipleTimes in Schnittstelle IIterableExaminer
      Parameter:
      iterable -
      element -
      Gibt zurück:
      true if the given iterable contains the given element multiple times, false otherwise.
    • containsElementOnce

      public boolean containsElementOnce(Iterable<?> iterable, Object element)
      Angegeben von:
      containsElementOnce in Schnittstelle IIterableExaminer
      Parameter:
      iterable -
      element -
      Gibt zurück:
      true if the given iterable contains the given element exactly 1 time, false otherwise.
    • containsExactlyOneWithStringRepresentation

      public boolean containsExactlyOneWithStringRepresentation(Iterable<?> iterable, String stringRepresentation)
      Angegeben von:
      containsExactlyOneWithStringRepresentation in Schnittstelle IIterableExaminer
      Parameter:
      iterable -
      stringRepresentation -
      Gibt zurück:
      true if the given iterable contains exactly 1 element with the given stringRepresentation, false otherwise.
    • isEmpty

      public boolean isEmpty(Iterable<?> iterable)
      Angegeben von:
      isEmpty in Schnittstelle IIterableExaminer
      Parameter:
      iterable -
      Gibt zurück:
      true if the given iterable is empty, false otherwise.