All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sundr.examples.arrays.EditablePerson Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
package io.sundr.examples.arrays;

import io.sundr.builder.Editable;
import java.lang.String;

public class EditablePerson extends Person implements Editable{


    public EditablePerson(String firstName,String lastName,int[] numbers){
            super(firstName, lastName, numbers);
    }

    public PersonBuilder edit(){
            return new PersonBuilder(this);
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy