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

net.karneim.pojobuilder.model.StaticFactoryMethodM Maven / Gradle / Ivy

Go to download

The PojoBuilder Generator is a Java 6 compliant annotation processor that generates a fluent builder class for POJOs (Plain Old Java Object)

There is a newer version: 4.3.0
Show newest version
package net.karneim.pojobuilder.model;

import javax.lang.model.element.Modifier;
import java.util.EnumSet;
import java.util.Set;

import static javax.lang.model.element.Modifier.*;

/**
 * Model for {@link net.karneim.pojobuilder.GeneratePojoBuilder#withFactoryMethod()}
 */
public class StaticFactoryMethodM extends MethodM {

  public StaticFactoryMethodM(String name) {
    super(name, EnumSet.of(PUBLIC, STATIC));
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy