文件名称:Android代码-immutables
文件大小:1.24MB
文件格式:ZIP
更新时间:2022-08-27 23:07:14
Android代码
Read full documentation at http://immutables.org // Define abstract value type using interface, abstract class or annotation @Value.Immutable public interface ValueObject extend WithValueObject { // extend not-yet-generated WithValueObject to inherit `with*` method signatures String getName(); List getCounts(); Optional getDescription(); class Builder extends ImmutableValueObject.Builder {} // ImmutableValueObject.Builder will be generated and // our builder will inherit and reex