How to use Java Records

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • record-builder

    Record builder generator for Java records

  • The above is not particularly user-friendly. Luckily compiler plugins can provide the missing feature, most notably RecordBuilder:

  • NullAway

    A tool to help eliminate NullPointerExceptions (NPEs) in your Java code with low build-time overhead

  • A special kind of validation is enforcing that record fields are not null. (Un)fortunately, records do not have any special behavior regarding nullability. You can use tools like NullAway or Error Prone to prevent null in your code in general, or you can add checks to your records:

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • Error Prone

    Catch common Java mistakes as compile-time errors

  • A special kind of validation is enforcing that record fields are not null. (Un)fortunately, records do not have any special behavior regarding nullability. You can use tools like NullAway or Error Prone to prevent null in your code in general, or you can add checks to your records:

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • What are some new or upcoming Java projects or advancements that excite you the most?

    2 projects | /r/java | 29 Oct 2021
  • We Have Code Quality At Home: Open Source Java Code Quality Tools

    4 projects | dev.to | 6 May 2024
  • JEP Draft – Derived Record Creation (Preview) – Java

    2 projects | news.ycombinator.com | 24 Jan 2024
  • My Thoughts on “Bad Code”

    1 project | news.ycombinator.com | 17 Mar 2023
  • Will Project Valhalla bring Kotlin-like nulls to Java?

    1 project | /r/Kotlin | 9 Feb 2023