In Java, the common style is to explicitly type every variable declaration.

So you’ll see things like:

String content = "some string content";

Which is surprising coming from more dynamic lands (Python, Ruby, TypeScript) or more modern static languages (Rust).

Using Var

As of Java 10, the language has var which allows for omitting the explicit type.

There’s even a rule in errorprone to prefer using var in some cases.

But ultimately I don’t think errorprone rule goes far enough, it warns about boilerplate usages like:

CustomerCreateParams params =
    CustomerCreateParams
        .builder()
        .setDescription("Example description")
        .setEmail("test@example.com")
        .setPaymentMethod("pm_card_visa")
        .build();

but doesn’t warn about:

String foo = "foo";

Instead, I think var should be preferred whenever possible, providing Java with readability similar to TypeScript.

So instead of:

String foo = "foo";
List<Character> charList = new ArrayList<>();
for (char c : foo.toCharArray()) {
    System.out.println(c);
    charList.add(c);
}

we’d have:

var foo = "foo";
var charList = new ArrayList<Character>();
for (var c : foo.toCharArray()) {
    System.out.println(c);
    charList.add(c);
}
System.out.println(charList.size());

Additionally, in some cases by using var you can avoid having to import the explicit types!

Not Using Final

Java has another keyword called final which makes variables immutable, similar to Javascript’s const.

So the initial code example would look more like:

final String content = "some string content";

Even more verbose!

Instead of using final everywhere, and leaving it off when we want to have a mutable variable, we can use Errorprone’s Var rule which eliminates most usages of final and assumes all variables are final, unless annotated with @Var.

So the code sample would be:

var content = "some string content";

or, if we wanted to mutate the content:

@Var var content = "some string content";
if (someCondition) {
    content = "other content";
}

Conclusion

Use var and Errorprone’s Var rule for more concise Java.