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

xapi.annotation.common.PropertyBuilder Maven / Gradle / Ivy

Go to download

Everything needed to run a comprehensive dev environment. Just type X_ and pick a service from autocomplete; new dev modules will be added as they are built. The only dev service not included in the uber jar is xapi-dev-maven, as it includes all runtime dependencies of maven, adding ~4 seconds to build time, and 6 megabytes to the final output jar size (without xapi-dev-maven, it's ~1MB).

The newest version!
package xapi.annotation.common;

import xapi.annotation.common.Property;

@SuppressWarnings("all")
public class PropertyBuilder {

  private static final class ImmutableProperty implements Property {

    private final String name;

    private final String value;

    public Class annotationType () {
      return xapi.annotation.common.Property.class;
    }

    public final String name () {
      return name;
    }

    public final String value () {
      return value;
    }

    private ImmutableProperty  (String name, String value) {
      this.name = name;
      this.value = value;
    }

  }

  public static PropertyBuilder buildProperty (String name) {
    return new PropertyBuilder(name);
  }

  private String name;

  private String value;

  public final String getName () {
    return name;
  }

  public final PropertyBuilder setName (String name) {
    this.name = name;
    return this;
  }

  public final String getValue () {
    return value;
  }

  public final PropertyBuilder setValue (String value) {
    this.value = value;
    return this;
  }

  private PropertyBuilder  (String name) {
    this.name = name;
  }

  public Property build () {
    return new ImmutableProperty(name, value);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy