/*
// $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/type/StringType.java#1 $
// This software is subject to the terms of the Eclipse Public License v1.0
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2005-2009 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.olap.type;
import mondrian.olap.Dimension;
import mondrian.olap.Hierarchy;
/**
* The type of a string expression.
*
* @author jhyde
* @since Feb 17, 2005
* @version $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/type/StringType.java#1 $
*/
public class StringType extends ScalarType {
/**
* Creates a string type.
*/
public StringType() {
super("STRING");
}
public boolean equals(Object obj) {
return obj instanceof StringType;
}
public boolean isInstance(Object value) {
return value instanceof String;
}
}
// End StringType.java
|