Schnittstelle IndexRequestable<E>

Typparameter:
E - is the type of the elements a IndexRequestable.
Alle bekannten Unterschnittstellen:
IArrayList<E>, ICachingContainer<E>, IContainer<E>, ILinkedList<E>, IMatrix<E>, ISqlRecord
Alle bekannten Implementierungsklassen:
ArrayList, ArrayView, CachingContainer, Container, ContainerView, ContainerView, FilterContainerView, ImmutableList, IterableView, LinkedList, Matrix, MatrixColumn, MatrixRow, MultiContainerView, SqlRecord

public interface IndexRequestable<E>
Version:
2024-11-12
Autor:
Silvan Wyss
  • Methodendetails

    • get1BasedIndexOfFirst

      int get1BasedIndexOfFirst(Predicate<E> selector)
      Parameter:
      selector -
      Gibt zurück:
      the 1-based index of the first element the given selector selects from the current IndexRequestable. Ignores null elements.
      Löst aus:
      RuntimeException - if the given selector is null.
      RuntimeException - if the current IndexRequestable does not contain an element the given selector selects.
    • get1BasedIndexOfFirstEqualElement

      int get1BasedIndexOfFirstEqualElement(Object object)
      Parameter:
      object -
      Gibt zurück:
      the 1-based index of the first element of the current IndexRequestable that equals the given object.
      Löst aus:
      RuntimeException - if the current IndexRequestable does not contain an element that equals the given object.
    • get1BasedIndexOfFirstOccurrenceOf

      int get1BasedIndexOfFirstOccurrenceOf(Object object)
      Parameter:
      object -
      Gibt zurück:
      the 1-based index of the first occurrence of the given object in the current IndexRequestable.
      Löst aus:
      RuntimeException - if the current IndexRequestable does not contain the given object.