Schnittstelle SingleSearchable<E>
- Typparameter:
E
- is the type of the elements aSingleSearchable
.
- 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 SingleSearchable<E>
- Version:
- 2024-11-12
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetOptionalStoredFirst
(Predicate<? super E> selector) getStoredAt1BasedIndex
(int param1BasedIndex) <C extends Comparable<C>>
EgetStoredByMax
(Function<E, C> comparableMapper) <C extends Comparable<C>>
EgetStoredByMin
(Function<E, C> comparableMapper) getStoredFirst
(Predicate<? super E> selector) <E2 extends E>
E2getStoredFirstOfType
(Class<E2> type) getStoredOne
(Predicate<? super E> selector)
-
Methodendetails
-
getOptionalStoredFirst
- Gibt zurück:
- a
Optional
with the first element of the currentSingleSearchable
if the currentSingleSearchable
is not empty and if the first element of the currentSingleSearchable
is not null, an emptyOptional
otherwise.
-
getOptionalStoredFirst
- Parameter:
selector
-- Gibt zurück:
- a new
Optional
with the first element the given selector selects from the currentSingleSearchable
if the currentSingleSearchable
contains an element the given selector selects, an emptyOptional
otherwise. Ignores null elements. - Löst aus:
RuntimeException
- if the given selector is null.
-
getStoredAt1BasedIndex
- Parameter:
param1BasedIndex
-- Gibt zurück:
- the element at the given param1BasedIndex. The element can be null.
- Löst aus:
RuntimeException
- if the currentSingleSearchable
does not contain an element at the given param1BasedIndex.
-
getStoredByMax
- Typparameter:
C
- is the type of theComparable
s the given comparableMapper maps from the elements of the currentSingleSearchable
.- Parameter:
comparableMapper
-- Gibt zurück:
- the element with the biggest
Comparable
the given comparableMapper maps from the elements of the currentSingleSearchable
. Ignores null elements. - Löst aus:
RuntimeException
- if the given comparableMapper is null.RuntimeException
- if the currentSingleSearchable
does not contain a non-null element.
-
getStoredByMin
- Typparameter:
C
- is the type of theComparable
s the given comparableMapper maps from the elements of the currentSingleSearchable
.- Parameter:
comparableMapper
-- Gibt zurück:
- the element with the smallest
Comparable
the given comparableMapper maps from the elements of the currentSingleSearchable
. Ignores null elements. - Löst aus:
RuntimeException
- if the given comparableMapper is null.RuntimeException
- if the currentSingleSearchable
does not contain a non-null element.
-
getStoredFirst
E getStoredFirst()- Gibt zurück:
- the first element of the current
SingleSearchable
. The element can be null. - Löst aus:
RuntimeException
- if the currentSingleSearchable
is empty.
-
getStoredFirst
- Parameter:
selector
-- Gibt zurück:
- the first element the given selector selects from the current
SingleSearchable
. Ignores null elements. - Löst aus:
RuntimeException
- if the currentSingleSearchable
does not contain an element the given selector selects.
-
getStoredFirstOfType
- Typparameter:
E2
- is the given type.- Parameter:
type
-- Gibt zurück:
- the first element from the current
SingleSearchable
that is of the given type. - Löst aus:
RuntimeException
- if the given type is null.RuntimeException
- if the currentSingleSearchable
does not contain an element of the given type.
-
getStoredLast
E getStoredLast()- Gibt zurück:
- the last element of the current
SingleSearchable
. The element can be null. - Löst aus:
RuntimeException
- if the currentSingleSearchable
is empty.
-
getStoredOne
E getStoredOne()- Gibt zurück:
- the one element of the current
SingleSearchable
. The element can be null. - Löst aus:
RuntimeException
- if the currentSingleSearchable
is empty.RuntimeException
- if the currentSingleSearchable
contains several elements.
-
getStoredOne
- Parameter:
selector
-- Gibt zurück:
- the one element the given selector selects from the current
SingleSearchable
. Ignores null elements. - Löst aus:
RuntimeException
- if the given selector is null.RuntimeException
- if the given selector selects none or several elements from the currentSingleSearchable
.
-