OptionalLong ifPresent(LongConsumer) method in Java with examples

The ifPresent(java.util.function.LongConsumer) method helps us to perform the specified LongConsumer action the value of this OptionalLong object. If a value is not present in this OptionalLong, then this method does nothing.Â
Syntax:
public void ifPresent(LongConsumer action)
Parameters: This method accepts a parameter action which is the action to be performed on this Optional, if a value is present.Â
Return value: This method returns nothing.Â
Exception: This method throw NullPointerException if a value is present and the given action is null.Â
Below programs illustrate ifPresent(LongConsumer) method:Â
Program 1:Â
Java
// Java program to demonstrate// OptionalLong.ifPresent(LongConsumer) methodÂ
import java.util.OptionalLong;Â
public class GFG {Â
    public static void main(String[] args)    {Â
        // create a OptionalLong        OptionalLong oplong            = OptionalLong.of(23456745678L);Â
        // apply ifPresent(LongConsumer)        oplong.ifPresent((value) -> {Â
            value = Math.round(value * 0.19);            System.out.println("Value after modification:=> "                               + value);        });    }} |
Output: 
Java
// Java program to demonstrate// OptionalLong.ifPresent(LongConsumer) methodÂ
import java.util.OptionalLong;Â
public class GFG {Â
    public static void main(String[] args)    {Â
        // create a OptionalLong        OptionalLong oplong = OptionalLong.empty();Â
        // apply ifPresent(LongConsumer)        oplong.ifPresent((value) -> {Â
            value = value * 132435;            System.out.println("Value:=> "                               + value);        });Â
        System.out.println("As OptionalLong is empty value"                           + " is not modified");    }} |
Output: 



