Constructors
builders
Default Constructor
public class TestClass {
private String test;
public TestClass() {
}
}Normal Constructor
public class TestClass {
private String test;
public TestClass() {
}
public TestClass(String arg) {
}
}Last updated