001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/type/BooleanType.java#5 $
003    // This software is subject to the terms of the Common Public License
004    // Agreement, available at the following URL:
005    // http://www.opensource.org/licenses/cpl.html.
006    // Copyright (C) 2005-2008 Julian Hyde
007    // All Rights Reserved.
008    // You must accept the terms of that agreement to use this software.
009    */
010    package mondrian.olap.type;
011    
012    /**
013     * The type of a boolean expression.
014     *
015     * @author jhyde
016     * @since Feb 17, 2005
017     * @version $Id: //open/mondrian/src/main/mondrian/olap/type/BooleanType.java#5 $
018     */
019    public class BooleanType extends ScalarType {
020        public BooleanType() {
021            super("BOOLEAN");
022        }
023    
024        public boolean equals(Object obj) {
025            return obj instanceof BooleanType;
026        }
027    }
028    
029    // End BooleanType.java