newszine

Java 8 LongPredicate Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 LongPredicate interface. LongPredicate Interface :- LongPredicate ( java.util.function.LongPredicate ) is a functional interface that has one abstract method and three default method declared in it. This interface is a specialised form of Predicate interface. Abstract method :-  boolean  test ( long value ) :- The abstract method test ( long value ) is a functional Read More

Java 8 IntPredicate Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 IntPredicate interface. IntPredicate Interface :- IntPredicate ( java.util.function.IntPredicate ) is a functional interface that has one abstract method and three default method declared in it. This interface is a specialised form of Predicate interface. Abstract method :-  boolean  test ( int  value ) :- The abstract method test ( int value ) is a functional method. Read More

Java 8 ObjLongConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 ObjLongConsumer interface. ObjLongConsumer Interface :- ObjLongConsumer ( java.util.function.ObjLongConsumer ) is a functional interface that has one abstract method declared in it. This interface is a specialised form of BiConsumer interface. Abstract method :-   void  accept ( T t , long value ) :- The abstract method accept ( Read More

Java 8 ObjIntConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 ObjIntConsumer interface. ObjIntConsumer Interface :- ObjIntConsumer ( java.util.function.ObjIntConsumer ) is a functional interface that has one abstract method declared in it. This interface is a specialised form of BiConsumer interface. Abstract method :-   void  accept ( T t , int value ) :- The abstract method accept ( T t Read More

Java 8 ObjDoubleConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 ObjDoubleConsumer interface. ObjDoubleConsumer Interface :- ObjDoubleConsumer ( java.util.function.ObjDoubleConsumer ) is a functional interface that has one abstract method declared in it. This interface is a specialised form of BiConsumer interface. Abstract method :-   void  accept ( T t , double value ) :- The abstract method accept ( T t , double Read More

Java 8 BiPredicate Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 BiPredicate interface. BiPredicate Interface :- BiPredicate ( java.util.function.BiPredicate ) is a functional interface that has one abstract method and three default method declared in it. Abstract method :-  boolean  test ( T  t, U u ) :- The abstract method test ( T t, U u ) is a functional Read More

Java 8 Predicate Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 Predicate interface. Predicate Interface :- Predicate ( java.util.function.Predicate ) is a functional interface that has one abstract method and three default method declared in it. Abstract method :-  boolean  test ( T  t ) :- The abstract method test ( T t ) is a functional method. It accepts one Read More

Java 8 DoubleConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 DoubleConsumer interface. DoubleConsumer Interface :- DoubleConsumer ( java.util.function.DoubleConsumer ) is a functional interface that has one abstract method and one default method declared in it. This interface is a specialised form of Consumer interface. Abstract method :-   void  accept ( double value ) :- The abstract method accept ( Read More

Java 8 LongConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 LongConsumer interface. LongConsumer Interface :- LongConsumer ( java.util.function.LongConsumer ) is a functional interface that has one abstract method and one default method declared in it. This interface is a specialised form of Consumer interface. Abstract method :-   void  accept ( long value ) :- The abstract method accept ( long value Read More

Java 8 IntConsumer Interface

7 years ago Lalit Bhagtani 0
In this tutorial, we will learn about Java 8 IntConsumer interface. IntConsumer Interface :- IntConsumer ( java.util.function.IntConsumer ) is a functional interface that has one abstract method and one default method declared in it. This interface is a specialised form of Consumer interface. Abstract method :-   void  accept ( int value ) :- The abstract method accept ( Read More