Closed Randgalt closed 1 year ago
E.g.
@RecordBuilder @RecordBuilder.Options( setterPrefix = "set", getterPrefix = "get", booleanPrefix = "is", beanClassName = "Bean") public record CustomMethodNames<K, V>( Map<K, V> kvMap, int theValue, List<Integer> theList, boolean theBoolean) implements Bean, CustomMethodNamesBuilder.With { }
Generates With interface with incorrect method names. They shouldn't have the prefix.
E.g.
Generates With interface with incorrect method names. They shouldn't have the prefix.