001    package org.jgnuplot;
002    
003    /**
004     * This class models a triplet value for certain settings, basicly it is boolean
005     * that can also be unspecified.
006     * 
007     * @author Pander
008     */
009    public final class State {
010       private State() {
011       }
012    
013       public static final int ON = 1;
014       public static final int OFF = 2;
015       public static final int NOT_SPECIFIED = -2;
016    
017    }