blob: 5dd3de82bbc3e30269c323a8d6055c6d191a1418 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.todos;
/**
* KeyedData represents data that has a key and is comparable.
* Most subclasses will use this key as part of their comparison function.
*
* Created by alexfandrianto on 4/14/16.
*/
public abstract class KeyedData<T> implements Comparable<T> {
public abstract String getKey();
}