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

net.sf.jett.model.PastEndValue Maven / Gradle / Ivy

Go to download

JETT is a Java API that reads an Excel spreadsheet as a template, takes your data, and creates a new Excel spreadsheet that contains your data, formatted as in the template. It works with .xls and .xlsx template spreadsheets.

The newest version!
package net.sf.jett.model;

/**
 * A PastEndValue represents the fact that an expression
 * references a collection item beyond the end of the iteration.  This is
 * distinct from null, which may be a legitimate value.  This is
 * closer to Void, but that can't be instantiated.
 *
 * @author Randy Gettman
 */
public class PastEndValue
{
    /**
     * The singleton PastEndValue value.
     */
    public static final PastEndValue PAST_END_VALUE = new PastEndValue();

    /**
     * Don't instantiate directly.
     */
    private PastEndValue() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy