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

org.vertexium.sql.collections.MapEntry Maven / Gradle / Ivy

The newest version!
package org.vertexium.sql.collections;

import com.google.common.base.Objects;

import java.util.Map;

class MapEntry implements Map.Entry {
    private String key;
    private T value;

    protected MapEntry(String key, T value) {
        this.key = key;
        this.value = value;
    }

    @Override
    public String getKey() {
        return key;
    }

    @Override
    public T getValue() {
        return value;
    }

    @Override
    public T setValue(T value) {
        this.value = value;
        return value;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        MapEntry that = (MapEntry) o;
        return Objects.equal(key, that.key) && Objects.equal(value, that.value);
    }

    @Override
    public int hashCode() {
        return Objects.hashCode(key, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy