Package eu.solven.cleanthat.language.java.rules.mutators
-
Class Summary Class Description AvoidFileStream Deprecated. CreateTempFilesUsingNio cases inspired from #descriptionEnumsWithoutEquals Prevent relying .equals onEnum
typesModifierOrder Order modifiers according the the Java specification.NumberToValueOf Switch new Double(d) to Double.valueOf(d)OptionalNotEmpty Prefer 'o.isPresent()' over 'o.isEmpty() == 0'PrimitiveBoxedForString Clean the way of converting primitives intoString
.UseDiamondOperator Deprecated. UseDiamondOperatorJdk8 Deprecated. UseIsEmptyOnCollections Prefer 'm.isEmpty()' over 'm.size() == 0'.VariableEqualsConstant Switch o.equals("someString") to "someString".equals(o)