Skip to content

v1.1

Compare
Choose a tag to compare
@lukaszbudnik lukaszbudnik released this 15 Feb 07:51

v1.1 contains:

  • implementation of checked exceptions (wrapped inside ElvisException)
  • more tests to cover more scenarios

Supported syntax for checked exceptions:

import static com.github.lukaszbudnik.jelvis.Elvis.elvis;
import static com.github.lukaszbudnik.jelvis.Elvis.wrappedFunction;
//...
Person person = new Person();
String line2 = elvis(person, wrappedFunction(p -> p.getAddress().getLine2()));