EnumSet forEach(Consumer) in Java

forEach(Consumer): This method is available in java.util.EnumSet class of Java.

Syntax:

void java.lang.Iterable.forEach(Consumer<? super K> action)

This method takes one argument. This method performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.

Parameters: One parameter is required for this method.

action: The action to be performed for each element.

Throws:

NullPointerException - if the specified action is null.

Approach 1: When no exception

Java

import java.util.EnumSet;

public class EnumSetforEach {
    public enum Colour {
        RED, GREEN, YELLOW, ORANGE
    };

    public static void main(String[] args) {

        EnumSet<Colour> enumSet = EnumSet.allOf(Colour.class);

        enumSet.forEach((n -> System.out.print(n + " ")));

    }
}

Output:

RED GREEN YELLOW ORANGE 


Approach 2: NullPointerException

Java

import java.util.EnumSet;

public class EnumSetforEach {
    public enum Colour {
        RED, GREEN, YELLOW, ORANGE
    };

    public static void main(String[] args) {

        EnumSet<Colour> enumSet = EnumSet.allOf(Colour.class);

        enumSet.forEach(null);

    }
}

Output:

Exception in thread "main" java.lang.NullPointerException at java.base/java.util.Objects.requireNonNull(Objects.java:208) at java.base/java.lang.Iterable.forEach(Iterable.java:73)


No comments:

Post a Comment