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

io.github.andyalvarez.primitive.IntKeyIntValue Maven / Gradle / Ivy

package io.github.andyalvarez.primitive;

public class IntKeyIntValue implements IntIntMap.Entry {

    private int value;
    private final int key;

    public IntKeyIntValue(int k, int v) {
        this.key = k;
        this.value= v;
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy