Kotlin – Sort List of custom Objects

In this tutorial, I will show you several useful ways to sort List of custom Objects for Ascending and Descending order in Kotlin. You’re gonna know how to:

  • sort List of Objects by one field or multiple fields
  • use your custom Comparator to sort List of Objects
  • implement Comparable interface to make sorting List of Objects more convenient

Related Posts:
Kotlin List & Mutable List tutorial with examples
Kotlin – Compare Objects with Comparable Example

Read More

Kotlin sum(), sumBy(), sumByDouble() and BigDecimal in List, Map example

In this Kotlin tutorial, I will show you some examples that uses sum(), sumBy(), sumByDouble() for List, Map. We’re gonna create sum() & sumByBigDecimal() which also work for List of BigDecimal objects.

Related Posts:
Kotlin List & Mutable List tutorial with examples
How to work with Kotlin HashMap
Kotlin Fold Example: fold(), foldRight(), foldIndexed(), foldRightIndexed()
Kotlin groupBy(), groupingBy() example

Read More

Java – Sort ArrayList of Objects

In this tutorial, we’re gonna look at some useful ways to sort Java ArrayList of Objects for Ascending and Descending order. You will know how to:

  • sort ArrayList of Objects by one field or multiple fields
  • use custom Comparator to sort ArrayList of Objects
  • implement Comparable interface to sort ArrayList of Objects conveniently

Read More