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

org.postgresql.core.Provider Maven / Gradle / Ivy

/*
 * Copyright (c) 2003, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package org.postgresql.core;

/**
 * Represents a provider of results.
 *
 * @param  the type of results provided by this provider
 */
public interface Provider {

  /**
   * Gets a result.
   *
   * @return a result
   */
  T get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy