
delight.functional.Success Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-functional Show documentation
Show all versions of delight-functional Show documentation
Utilities for functional-style Java applications.
The newest version!
package delight.functional;
/**
*
* Success represents a successfully completed operations.
*
*
* In contrast to {@link SuccessFail} it will not capture failures as values.
*
* @author Max
*/
@SuppressWarnings("all")
public class Success {
/**
* A singelton of Success
*/
public final static Success INSTANCE = new Success();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy