Package pro.fessional.wings.faceless.convention
See: Description
-
Class Summary Class Description EmptyValue EmptySugar `isXxx/notXxx` for exact comparison, `asXxx/nonXxx` for range comparison FormatSugar null friendly formatter SetterSugar if (str != null) { dto.setStr(str); } If(dto::setStr, str); f (dto.getStr() == null) { dto.setStr(str); } If(dto::setStr, str, dto.getStr() == null); if (Objects.nonNull(str)) { dto.setStr(str); } If(dto::setStr, str, Objects::nonNull);