Package ch.nolix.core.sql.model
Klasse SqlRecord
- Alle implementierten Schnittstellen:
IOneBaseIndexed
,FilterMultiSearchable<String>
,IContainer<String>
,IViewProviderContainer<String>
,Mappable<String>
,MultiSearchable<String>
,ArrayMappable<String>
,ICountingContainer<String>
,IndexRequestable<String>
,IStatisticalConainer<String>
,IterableWithCopyableIterator<String>
,SingleSearchable<String>
,StoringRequestable<String>
,StringMappable
,ISqlRecord
,EmptinessRequestable
,MaterializationRequestable
,Iterable<String>
A
SqlRecord
is not mutable.- Version:
- 2024-12-28
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungprotected <E2> ILinkedList
<E2> createEmptyMutableList
(Marker<E2> marker) int
getCount()
int
getStoredAt1BasedIndex
(int param1BasedIndex) boolean
iterator()
<C extends Comparable<C>>
IContainer<String> toOrderedList
(Function<String, C> comparableMapper) static SqlRecord
withOneBasedIndexAndValue
(int oneBasedIndex, String value) static SqlRecord
withOneBasedIndexAndValues
(int oneBasedIndex, Iterable<String> values) Von Klasse geerbte Methoden ch.nolix.core.container.base.Container
contains, containsAll, containsAll, containsAll, containsAny, containsAny, containsAnyOf, containsAnyOf, containsAsManyAs, containsEqualing, containsExactlyEqualingInSameOrder, containsExactlyInSameOrder, containsLessThan, containsMoreThan, containsNone, containsNone, containsNoneOf, containsOnce, containsOne, containsOne, containsOneEqualing, containsOnly, get1BasedIndexOfFirst, get1BasedIndexOfFirstEqualElement, get1BasedIndexOfFirstOccurrenceOf, getAverage, getAverageOrZero, getCount, getCountOf, getMax, getMaxOrZero, getMedian, getMedianOrZero, getMin, getMinOrZero, getOptionalStoredFirst, getOptionalStoredFirst, getStandardDeviation, getStoredByMax, getStoredByMin, getStoredFirst, getStoredFirst, getStoredFirstOfType, getStoredInGroups, getStoredLast, getStoredOfType, getStoredOne, getStoredOne, getStoredOthers, getStoredSelected, getSum, getSumOfInts, getVariance, getViewFrom1BasedStartIndex, getViewFrom1BasedStartIndexTo1BasedEndIndex, getViewOfStoredSelected, getViewTo1BasedEndIndex, getViewWithoutFirst, getViewWithoutFirst, getViewWithoutLast, getViewWithoutLast, isEmpty, to, toArray, toByteArray, toCharArray, toConcatenatedString, toDoubleArray, toIntArray, toLongArray, toMultiples, toNumbers, toReversedList, toStringArray, toStrings, toStringWithSeparator, toStringWithSeparator, toWithOneBasedIndex
Von Klasse geerbte Methoden java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.ArrayMappable
toArray, toByteArray, toCharArray, toDoubleArray, toIntArray, toLongArray, toStringArray
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.stateapi.staterequestapi.EmptinessRequestable
containsAny, isEmpty
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.baseapi.FilterMultiSearchable
getViewOfStoredSelected
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.baseapi.IContainer
toReversedList
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.ICountingContainer
getCount, getCountOf
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.IndexRequestable
get1BasedIndexOfFirst, get1BasedIndexOfFirstEqualElement, get1BasedIndexOfFirstOccurrenceOf
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.IStatisticalConainer
getAverage, getAverageOrZero, getMax, getMaxOrZero, getMedian, getMedianOrZero, getMin, getMinOrZero, getStandardDeviation, getSum, getSumOfInts, getVariance
Von Schnittstelle geerbte Methoden java.lang.Iterable
forEach, spliterator
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.baseapi.IViewProviderContainer
getViewFrom1BasedStartIndex, getViewFrom1BasedStartIndexTo1BasedEndIndex, getViewTo1BasedEndIndex, getViewWithoutFirst, getViewWithoutFirst, getViewWithoutLast, getViewWithoutLast
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.baseapi.Mappable
to, toMultiples, toNumbers, toStrings, toWithOneBasedIndex
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.stateapi.staterequestapi.MaterializationRequestable
isView
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.baseapi.MultiSearchable
getStoredInGroups, getStoredOfType, getStoredOthers, getStoredSelected
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.SingleSearchable
getOptionalStoredFirst, getOptionalStoredFirst, getStoredByMax, getStoredByMin, getStoredFirst, getStoredFirst, getStoredFirstOfType, getStoredLast, getStoredOne, getStoredOne
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.StoringRequestable
contains, containsAll, containsAll, containsAll, containsAny, containsAny, containsAnyOf, containsAnyOf, containsAsManyAs, containsEqualing, containsExactlyEqualingInSameOrder, containsExactlyInSameOrder, containsLessThan, containsMoreThan, containsNone, containsNone, containsNoneOf, containsOnce, containsOne, containsOne, containsOneEqualing, containsOnly
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.containerapi.commoncontainerapi.StringMappable
toConcatenatedString, toStringWithSeparator, toStringWithSeparator
-
Methodendetails
-
withOneBasedIndexAndValue
- Parameter:
oneBasedIndex
-value
-- Gibt zurück:
- a new
SqlRecord
with the given oneBasedIndex and value. - Löst aus:
NonPositiveArgumentException
- if the given oneBasedIndex is not positive.ArgumentIsNullException
- if the given value is null.
-
withOneBasedIndexAndValues
- Parameter:
oneBasedIndex
-values
-- Gibt zurück:
- a new
SqlRecord
with the oneBasedIndex and given values. - Löst aus:
NonPositiveArgumentException
- if the given oneBasedIndex is not positive.ArgumentIsNullException
- if the given values is null.ArgumentIsNullException
- if one of the given values is null.
-
getCount
public int getCount()- Angegeben von:
getCount
in SchnittstelleICountingContainer<String>
- Gibt zurück:
- the number of elements of the current
ICountingContainer
.
-
getOneBasedIndex
public int getOneBasedIndex()- Angegeben von:
getOneBasedIndex
in SchnittstelleIOneBaseIndexed
- Gibt zurück:
- the one-based index of the current
IOneBaseIndexed
.
-
getStoredAt1BasedIndex
- Angegeben von:
getStoredAt1BasedIndex
in SchnittstelleSingleSearchable<String>
- Parameter:
param1BasedIndex
-- Gibt zurück:
- the element at the given param1BasedIndex. The element can be null.
-
isMaterialized
public boolean isMaterialized()- Angegeben von:
isMaterialized
in SchnittstelleMaterializationRequestable
- Gibt zurück:
- true if the current
MaterializationRequestable
is materialized, false otherwise.
-
iterator
-
toOrderedList
public <C extends Comparable<C>> IContainer<String> toOrderedList(Function<String, C> comparableMapper) - Angegeben von:
toOrderedList
in SchnittstelleIContainer<String>
- Typparameter:
C
- is the type of theComparable
s the given comparableMapper returns.- Parameter:
comparableMapper
-- Gibt zurück:
- a new
IContainer
with the elements of the currentIContainer
ordered from the smallest to the biggest element according to theComparable
s the given comparableMapper maps from the elements of the currentIContainer
.
-
createEmptyMutableList
- Angegeben von:
createEmptyMutableList
in KlasseContainer<String>
- Typparameter:
E2
- is the type of the elements the createdILinkedList
can contain.- Parameter:
marker
-- Gibt zurück:
- a new empty
ILinkedList
.
-