Interface TmaKeyProcessingService

All Known Implementing Classes:
DefaultTmaKeyProcessingService

public interface TmaKeyProcessingService
Service responsible for handling various operations based on given key/attribute.
Since:
2302
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> Predicate<T>
    distinctByKey(Function<? super T,?> keyExtractor)
    Returns collection having unique values of the given attribute of the object.
  • Method Details

    • distinctByKey

      <T> Predicate<T> distinctByKey(Function<? super T,?> keyExtractor)
      Returns collection having unique values of the given attribute of the object.
      Parameters:
      keyExtractor - the attribute whose unique values are required in the collection.
      Returns:
      a collection having unique values of the given attribute of the object.