Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Tuple.java « model « owncloudnewsreader « luhmer « de « java « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f6fc1e674faaaa0497758eff6aeb6a3b7bfc4d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
package de.luhmer.owncloudnewsreader.model;

// TODO replace with Pair
public class Tuple<E, T> {
    public final E key;
    public final T value;
    public Tuple(E key, T value) {
        this.key = key;
        this.value = value;
    }
}