org.geogig.osm.internal.history.Change.java Source code

Java tutorial

Introduction

Here is the source code for org.geogig.osm.internal.history.Change.java

Source

/* Copyright (c) 2013-2016 Boundless and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Distribution License v1.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/org/documents/edl-v10.html
 *
 * Contributors:
 * Victor Olaya (Boundless) - initial implementation
 */
package org.geogig.osm.internal.history;

import com.google.common.base.Optional;

/**
 *
 */
public class Change {

    public enum Type {
        create, modify, delete
    }

    private Node node;

    private Way way;

    private Relation relation;

    private final Type type;

    public Change(Type type, Primitive primitive) {
        this.type = type;
        if (primitive instanceof Node) {
            node = (Node) primitive;
        } else if (primitive instanceof Way) {
            way = (Way) primitive;
        } else if (primitive instanceof Relation) {
            relation = (Relation) primitive;
        } else {
            throw new IllegalArgumentException("Unknown primitive: " + primitive);
        }
    }

    public Type getType() {
        return type;
    }

    public Optional<Node> getNode() {
        return Optional.fromNullable(node);
    }

    public Optional<Way> getWay() {
        return Optional.fromNullable(way);
    }

    public Optional<Relation> getRelation() {
        return Optional.fromNullable(relation);
    }

    void setNode(Node node) {
        this.node = node;
    }

    void setWay(Way way) {
        this.way = way;
    }

    void setRelation(Relation relation) {
        this.relation = relation;
    }

    @Override
    public String toString() {
        return new StringBuilder(getClass().getSimpleName()).append("[type:").append(getType()).append(", ")
                .append(getNode().isPresent() ? node : (getWay().isPresent() ? way : relation)).append(']')
                .toString();
    }
}