Posts in 2024
  • Advanced Streams

    2024-02-10 in 2024

    Featured Image for Advanced Streams

    The Java Stream API is a powerful and simple to understand set of tools for processing sequences of elements. The standard collections were retrofitted with the stream() method, which allows us to convert any collection to a stream. Modern Java code …

    Read more

  • EclipseStore

    2024-01-25 in 2024

    Featured Image for EclipseStore

    Eclipse Store [1] is a Java-native persistence layer built for cloud-native microservices and serverless systems. EclipseStore is the only data storage solution that uses the native Java object model instead of a database-specific structure or …

    Read more

  • Data Classes, Sealed Types and Pattern Matching

    2024-01-01 in 2024

    Featured Image for Data Classes, Sealed Types and Pattern Matching

    Records, sealed types, enumerations are the key language features for Algebraic Data Types. The features have been available since Java 17. Latter JDK releases provide additional capabilities and syntactic sugar. Based on the features of JDK 22, we …

    Read more