Advertisement
danyelmorales1991

LambdaImpl.java

Feb 7th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package com.java8;
  2.  
  3. public class LambdaImpl {
  4.  
  5.     public static void main(String[] args) {
  6.    
  7.         IFilterText lambdaFilter = (String text) -> {
  8.             return text.equals("fooBar");
  9.         };
  10.  
  11.  
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement