class Properties : List<Property<*>>
The properties of the value object. You can either iterator over these directly (ex: for (Property<?> property: properties))
or iterate over a specific sub-set (ex: for (Property.Field field : properties.getFields())).
val builderParams: List<BuilderParam>
All builder methods. |
|
val constructorParams: List<ConstructorParam>
All constructor/factory params |
|
val fields: List<Field>
All accessible fields |
|
val getters: List<Getter>
All getters |
|
val params: List<Param>
All parameters, this includes constructor/factory params and builder methods. |
fun equals(other: Any?): Boolean |
|
fun hashCode(): Int |
|
fun toString(): String |