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

eu.hansolo.fx.countries.tools.PoiBuilder Maven / Gradle / Ivy

package eu.hansolo.fx.countries.tools;

import javafx.beans.property.DoubleProperty;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.Property;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.geometry.Dimension2D;
import javafx.scene.image.Image;
import javafx.scene.paint.Color;

import java.time.Instant;
import java.util.HashMap;


public class PoiBuilder> {
    private HashMap properties = new HashMap<>();


    // ******************** Constructors **************************************
    protected PoiBuilder() {}


    // ******************** Methods *******************************************
    public static final PoiBuilder create() {
        return new PoiBuilder();
    }

    public final B lat(final double latitude) {
        properties.put("lat", new SimpleDoubleProperty(latitude));
        return (B) this;
    }

    public final B lon(final double longitude) {
        properties.put("lon", new SimpleDoubleProperty(longitude));
        return (B) this;
    }

    public final B name(final String name) {
        properties.put("name", new SimpleStringProperty(name));
        return (B) this;
    }

    public final B info(final String info) {
        properties.put("info", new SimpleStringProperty(info));
        return (B) this;
    }

    public final B valueObject(final ValueObject valueObject) {
        properties.put("valueObject", new SimpleObjectProperty<>(valueObject));
        return (B)this;
    }

    public final B pointSize(final PointSize pointSize) {
        properties.put("pointSize", new SimpleObjectProperty<>(pointSize));
        return (B)this;
    }

    public final B fill(final Color fill) {
        properties.put("fill", new SimpleObjectProperty(fill));
        return (B) this;
    }

    public final B stroke(final Color stroke) {
        properties.put("stroke", new SimpleObjectProperty(stroke));
        return (B) this;
    }

    public final B image(final Image image) {
        properties.put("image", new SimpleObjectProperty<>(image));
        return (B)this;
    }

    public final B svgPath(final String svgPath) {
        properties.put("svgPath", new SimpleStringProperty(svgPath));
        return (B)this;
    }

    public final B svgPathDim(final Dimension2D svgPathDim) {
        properties.put("svgPathDim", new SimpleObjectProperty<>(svgPathDim));
        return (B)this;
    }

    public final Poi build() {
        Poi poi = new Poi();
        properties.forEach((key, property) -> {
            if ("lat".equals(key)) {
                poi.setLat(((DoubleProperty) properties.get(key)).get());
            } else if ("lon".equals(key)) {
                poi.setLon(((DoubleProperty) properties.get(key)).get());
            } else if ("name".equals(key)) {
                poi.setName(((StringProperty) properties.get(key)).get());
            } else if ("info".equals(key)) {
                poi.setInfo(((StringProperty) properties.get(key)).get());
            } else if ("valueObject".equals(key)) {
                poi.setValueObject(((ObjectProperty) properties.get(key)).get());
            } else if ("pointSize".equals(key)) {
                poi.setPointSize(((ObjectProperty) properties.get(key)).get());
            } else if ("fill".equals(key)) {
                poi.setFill(((ObjectProperty) properties.get(key)).get());
            } else if ("stroke".equals(key)) {
                poi.setStroke(((ObjectProperty) properties.get(key)).get());
            } else if ("image".equals(key)) {
                poi.setImage(((ObjectProperty) properties.get(key)).get());
            } else if ("svgPath".equals(key)) {
                poi.setSvgPath(((StringProperty) properties.get(key)).get());
            } else if ("svgPathDim".equals(key)) {
                poi.setSvgPathDim(((ObjectProperty) properties.get(key)).get());
            }
        });
        return poi;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy