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

org.postgresql.util.Gettable Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2018, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package org.postgresql.util;

import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;

public interface Gettable {
  @Nullable V get(K key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy