Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 896 Bytes

File metadata and controls

36 lines (30 loc) · 896 Bytes

Do

Utility for Java 8 and above to shorthand common code snippets.

This utility package is intended to shorthand common code snippets like

T val = def;
if (a != null) {
  val = a;
} else if (b != null) {
  val = b;
} ...

// abbreviated to

T val = First.of(a).or(b)...orDef(def);

// both methods (of and or) take T, Supplier<T> and Runnables.
// The first value != null is returned as Optional. If no such value is returned,
// an empty Optional is returned.

and provides helper classes to shorthand if constructs into single expressions, reducing the outline of certain lambda constellations:

Runnable r = () -> {
  if (condition) {
    operation_a;
  } else {
    operation_b;
  }
};

// abbreviated to

Runnable r = () -> Do.on(condition, () -> operation_a, () -> operation_b);

New input for additional shorthands or optimization of existing ones is very welcome.