Uses of Class
com.rosetta.model.lib.mapper.MapperC
Packages that use MapperC
-
Uses of MapperC in com.rosetta.model.lib.expression
Methods in com.rosetta.model.lib.expression that return MapperC -
Uses of MapperC in com.rosetta.model.lib.mapper
Methods in com.rosetta.model.lib.mapper that return MapperCModifier and TypeMethodDescriptionMapperC.filterItem(Predicate<MapperS<T>> predicate) MapperC.filterItemNullSafe(Function<MapperS<T>, Boolean> predicate) Filter items of list based on the given predicate.MapperListOfLists.flattenList()Flatten a list of lists to a list.<F> MapperC<F> MapperC.map(NamedFunction<T, F> mappingFunc) Maps list parent item to single child item.<F> MapperC<F> <F> MapperC<F> MapperC.mapC(NamedFunction<T, List<? extends F>> mappingFunc) Maps list parent item to list child item.<F> MapperC<F> <F> MapperC<F> MapperS.mapC(NamedFunction<T, List<? extends F>> mappingFunc) Maps single parent item to list child item.<F> MapperC<F> <F> MapperC<F> Map items of a list based on the given mapping function.<F> MapperC<F> MapperListOfLists.mapListToItem(Function<MapperC<T>, MapperS<F>> mappingFunc) Map a list of lists to a list based on the given mapping function.<F> MapperC<F> MapperS.mapSingleToList(Function<MapperS<T>, MapperC<F>> mappingFunc) Map a single value into an item of a list based on the given mapping function.static <T> MapperC<T> MapperC.of(MapperBuilder<? extends T>... ts) static <T> MapperC<T> static <T> MapperC<T> MapperC.ofNull()MapperC.removeItem(MapperS<Integer> indexGetter) Remove item at specified index, returns list without removed item.MapperC.reverse()Reverse items of a list.static <T> MapperC<T> Deprecated.Used when generating code for nested if statementsstatic <T> MapperC<? extends T> MapperUtils.runMultiPolymorphic(Supplier<Mapper<? extends T>> supplier) Deprecated.MapperC.sort()Sort list of comparable items.<F extends Comparable<F>>
MapperC<T> Sort list of items based on comparable attribute.MapperC.unionDifferent(MapperBuilder<?> other) MapperS.unionDifferent(MapperBuilder<?> other) MapperC.unionSame(MapperBuilder<T> other) MapperS.unionSame(MapperBuilder<T> other) Method parameters in com.rosetta.model.lib.mapper with type arguments of type MapperCModifier and TypeMethodDescription<F> FApply a function to this mapperMapperListOfLists.filterList(Predicate<MapperC<T>> predicate) Filter a list of lists based on the given predicate.MapperListOfLists.filterListNullSafe(Function<MapperC<T>, Boolean> predicate) Filter a list of lists based on the given predicate.<F> MapperListOfLists<F> MapperC.mapItemToList(Function<MapperS<T>, MapperC<F>> mappingFunc) Map items of a list based on the given mapping function.<F> MapperC<F> MapperListOfLists.mapListToItem(Function<MapperC<T>, MapperS<F>> mappingFunc) Map a list of lists to a list based on the given mapping function.<F> MapperListOfLists<F> MapperListOfLists.mapListToList(Function<MapperC<T>, MapperC<F>> mappingFunc) Map list of lists to a different list of lists based on the given mapping function.<F> MapperListOfLists<F> MapperListOfLists.mapListToList(Function<MapperC<T>, MapperC<F>> mappingFunc) Map list of lists to a different list of lists based on the given mapping function.<F> MapperC<F> MapperS.mapSingleToList(Function<MapperS<T>, MapperC<F>> mappingFunc) Map a single value into an item of a list based on the given mapping function.