![JAR search and dependency download from the Maven repository](/logo.png)
gov.sandia.cognition.evaluator.ReversibleEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cognitive-foundry Show documentation
Show all versions of cognitive-foundry Show documentation
A single jar with all the Cognitive Foundry components.
/*
* File: ReversibleEvaluator.java
* Authors: Justin Basilico
* Project: Cognitive Foundry Common Core
*
* Copyright 2012 Cognitive Foundry. All rights reserved.
*/
package gov.sandia.cognition.evaluator;
/**
* Represents a {@link Evaluator} whose evaluation can be reversed. The
* reverse is just another {@code Evaluator}. It is required that the
* converter's range must be part of the domain of the reverse converter.
*
* @param
* The input type to evaluate from.
* @param
* The output type to evaluate to.
* @param
* The type of reverse evaluator.
* @author Justin Basilico
* @since 3.3.3
*/
public interface ReversibleEvaluator>
extends Evaluator
{
/**
* Gets the data converter that performs the reverse conversion.
*
* @return The reverse converter.
*/
public ReverseType reverse();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy