
com.univocity.api.common.ValueGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of univocity-common-api Show documentation
Show all versions of univocity-common-api Show documentation
univocity public API - Common classes and utilites
The newest version!
/*******************************************************************************
* Copyright (c) 2014 Univocity Software Pty Ltd. All rights reserved.
* This file is subject to the terms and conditions defined in file
* 'LICENSE.txt', which is part of this source code package.
******************************************************************************/
package com.univocity.api.common;
/**
* A simple interface to provide values
*
* @param the type of the value to be returned from the {@link ValueGetter#getValue()} method
*
* @author Univocity Software Pty Ltd - [email protected]
*/
public interface ValueGetter {
/**
* Provides a value to the caller.
*
* @return the value
*/
T getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy