Skip to content

Instantly share code, notes, and snippets.

@arvindkgs
Last active April 30, 2026 05:11
Show Gist options
  • Select an option

  • Save arvindkgs/5c8f02ad74f1a9e1c87bd2a66dbbaac4 to your computer and use it in GitHub Desktop.

Select an option

Save arvindkgs/5c8f02ad74f1a9e1c87bd2a66dbbaac4 to your computer and use it in GitHub Desktop.
[Plain Java Utils] Java helper snippets #java #snippets

// Source - https://stackoverflow.com/a/62434813 // Posted by gabriel119435, modified by community. See post 'Timeline' for change history // Retrieved 2026-04-30, License - CC BY-SA 4.0

() means no input/output (void)

Supplier : () -> x

Consumer : x -> ()

BiConsumer : x, y -> ()

Callable : () -> x throws ex

Runnable : () -> ()

Function : x -> y

BiFunction : x,y -> z

Predicate : x -> boolean

UnaryOperator : x1 -> x2

BinaryOperator : x1,x2 -> x3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment