blob: 3d9f60043ee4dfa6047a26b0c4468d902fbbe382 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Mike Norman - June 10 2011, created DDL parser package
******************************************************************************/
package org.eclipse.persistence.tools.oracleddl.metadata;
public abstract class PrecisionType extends ScalarDatabaseTypeBase implements ScalarDatabaseType {
protected long precision;
protected long scale;
public PrecisionType(String typeName, long precision) {
super(typeName);
this.precision = precision;
this.scale = 0;
}
public PrecisionType(String typeName, long precision, long scale) {
this(typeName, precision);
this.scale = scale;
}
public long getPrecision() {
return precision;
}
public long getScale() {
return scale;
}
public abstract long getDefaultPrecision();
public boolean isSimple() {
return true;
}
@Override
public boolean isPrecisionType() {
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder(super.toString());
if (precision != getDefaultPrecision()) {
sb.append('(');
sb.append(precision);
if (scale != 0) {
sb.append(',');
sb.append(scale);
}
sb.append(')');
}
return sb.toString();
}
}