Skip to content

Yet another programming solutions log

Sample bits from programming for the future generations.

Technologies Technologies
  • Algorithms and Data Structures
  • Java Tutorials
  • JUnit Tutorial
  • MongoDB Tutorial
  • Quartz Scheduler Tutorial
  • Spock Framework Tutorial
  • Spring Framework
  • Bash Tutorial
  • Clojure Tutorial
  • Design Patterns
  • Developer’s Tools
  • Productivity
  • About
Expand Search Form

Java null check

farenda 2015-09-04 0

Problem:

How to do null check in Java? The old way was to do validation manually, but since Java 7 there’s a better way. In the following example we show the difference.

Solution:

In the below Java example we show how to validate method arguments in the old and the new way. Since Java 7 there’s java.util.Objects class with a couple of helper methods that ease working with objects (see Objects equals hascode example). Here we use requireNotNull(Object,String) that will handle NullPointerException creation for us and will make the code cleaner:

package com.farenda.java.util;

import java.util.Objects;

public class ObjectsRequireNotNull {

    private static void theOldWay(String data) {
        System.out.println("\nOld, verbose way of checking arguments:");
        if (data == null) {
            throw new NullPointerException("'data' must not be null");
        }

        System.out.println("Processing data: " + data);
    }

    private static void theNewWay(String data) {
        System.out.println("\nThe new, Java 7 way of checking arguments:");
        Objects.requireNonNull(data, "'data' must not be null");

        System.out.println("Processing data: " + data);
    }

    public static void main(String[] args) {
        try {
            theOldWay("Hello world!");
            theOldWay(null);
        } catch (NullPointerException e) {
            System.out.println("Caught: " + e.getMessage());
        }

        try {
            theNewWay("Hello world!");
            theNewWay(null);
        } catch (NullPointerException e) {
            System.out.println("Caught: " + e.getMessage());
        }
    }
}

And here’s the result of running the example:

Old, verbose way of checking arguments:
Processing data: Hello world!

Old, verbose way of checking arguments:
Caught: 'data' must not be null

The new, Java 7 way of checking arguments:
Processing data: Hello world!

The new, Java 7 way of checking arguments:
Caught: 'data' must not be null

As you can see the results are the same, but the code in theNewWay() method is cleaner. Unfortunately, there is no method that would take any predicate and throw IllegalArgumentException in case of it not being satisfied. Maybe in some further Java version. :-)

Share with the World!
Categories Java Tags java, java-basics
Previous: Java Objects equals hashcode
Next: Java System properties

Recent Posts

  • Java 8 Date Time concepts
  • Maven dependency to local JAR
  • Caesar cipher in Java
  • Java casting trick
  • Java 8 flatMap practical example
  • Linked List – remove element
  • Linked List – insert element at position
  • Linked List add element at the end
  • Create Java Streams
  • Floyd Cycle detection in Java

Pages

  • About Farenda
  • Algorithms and Data Structures
  • Bash Tutorial
  • Bean Validation Tutorial
  • Clojure Tutorial
  • Design Patterns
  • Java 8 Streams and Lambda Expressions Tutorial
  • Java Basics Tutorial
  • Java Collections Tutorial
  • Java Concurrency Tutorial
  • Java IO Tutorial
  • Java Tutorials
  • Java Util Tutorial
  • Java XML Tutorial
  • JUnit Tutorial
  • MongoDB Tutorial
  • Quartz Scheduler Tutorial
  • Software Developer’s Tools
  • Spock Framework Tutorial
  • Spring Framework

Tags

algorithms bash bean-validation books clojure design-patterns embedmongo exercises git gof gradle groovy hateoas hsqldb i18n java java-basics java-collections java-concurrency java-io java-lang java-time java-util java-xml java8 java8-files junit linux lists log4j logging maven mongodb performance quartz refactoring regex rest slf4j solid spring spring-boot spring-core sql unit-tests

Yet another programming solutions log © 2022

sponsored