Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Condition(Predicate<T> predicate, String description, Object... args)
  2.  
  3. Condition<File>({ it.name.startsWith("functional_questions") }, "Description")
  4.  
  5. Condition<File>({ file -> file.name.startsWith("functional_questions") }, "Description")
  6.  
  7. Condition<File>(Predicate<File> { t -> t.name.startsWith("functional_questions") }, "description")
Add Comment
Please, Sign In to add comment