Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

oracle.owb.foundation.type
Interface ScalarDatatype

All Superinterfaces:
Datatype, OWBNamedObject

public interface ScalarDatatype
extends Datatype

Datatype represents a scalar datatype. [More description here...]


Method Summary
 int getDefaultLength()
          Return the default length of this datatype.
 int getDefaultPrecision()
          Return the default precision of this datatype.
 int getDefaultScale()
          Return the default scale of this datatype.
 int getMaxLength()
          Return the maximum length of this datatype.
 int getMaxPrecision()
          Return the maximum precision of this datatype.
 int getMaxScale()
          Return the maximum scale of this datatype.
 int getMinLength()
          Return the minimum length of this datatype.
 int getMinPrecision()
          Return the minimum precision of this datatype.
 int getMinScale()
          Return the minimum scale of this datatype.
 boolean isLengthAllowed()
          Return a boolean value indicating if length is meaningful.
 boolean isPrecisionAllowed()
          Return a boolean value indicating if precision is meaningful.
 boolean isPrecisionOmitAllowed()
          Return a boolean value indicating if precision can be omitted.
 boolean isScaleAllowed()
          Return a boolean value indicating if scale is meaningful.

 

Methods inherited from interface oracle.owb.foundation.type.Datatype
getDatatypeSet, isAbstractDatatype, isDomain, isListDatatype, isScalarDatatype

 

Methods inherited from interface oracle.owb.foundation.OWBNamedObject
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName

 

Method Detail

getMinLength

public int getMinLength()
Return the minimum length of this datatype.

getMaxLength

public int getMaxLength()
Return the maximum length of this datatype.

getDefaultLength

public int getDefaultLength()
Return the default length of this datatype.

getMinPrecision

public int getMinPrecision()
Return the minimum precision of this datatype.

getMaxPrecision

public int getMaxPrecision()
Return the maximum precision of this datatype.

getDefaultPrecision

public int getDefaultPrecision()
Return the default precision of this datatype.

getMinScale

public int getMinScale()
Return the minimum scale of this datatype.

getMaxScale

public int getMaxScale()
Return the maximum scale of this datatype.

getDefaultScale

public int getDefaultScale()
Return the default scale of this datatype.

isLengthAllowed

public boolean isLengthAllowed()
Return a boolean value indicating if length is meaningful.

isPrecisionAllowed

public boolean isPrecisionAllowed()
Return a boolean value indicating if precision is meaningful.

isPrecisionOmitAllowed

public boolean isPrecisionOmitAllowed()
Return a boolean value indicating if precision can be omitted.

isScaleAllowed

public boolean isScaleAllowed()
Return a boolean value indicating if scale is meaningful.

Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

Copyright © 2003, Oracle. All Rights Reserved.