public DecimalTypeIdImpl(boolean isNumeric) { super(StoredFormatIds.DECIMAL_TYPE_ID_IMPL); if (isNumeric) setNumericType(); }
/** * Write this object to a stream of stored objects. * * @param out write bytes here. * * @exception IOException thrown on error */ public void writeExternal( ObjectOutput out ) throws IOException { out.writeBoolean(getJDBCTypeId() == Types.NUMERIC); super.writeExternal(out); }
return new BaseTypeIdImpl(fmtId); case StoredFormatIds.DECIMAL_TYPE_ID_IMPL: return new DecimalTypeIdImpl(false); case StoredFormatIds.DATA_TYPE_SERVICES_IMPL_V01_ID: return new OldRoutineType();
/** * Write this object to a stream of stored objects. * * @param out write bytes here. * * @exception IOException thrown on error */ public void writeExternal( ObjectOutput out ) throws IOException { out.writeBoolean(getJDBCTypeId() == Types.NUMERIC); super.writeExternal(out); }
return new BaseTypeIdImpl(fmtId); case StoredFormatIds.DECIMAL_TYPE_ID_IMPL: return new DecimalTypeIdImpl(false); case StoredFormatIds.DATA_TYPE_SERVICES_IMPL_V01_ID: return new OldRoutineType();
public DecimalTypeIdImpl(boolean isNumeric) { super(StoredFormatIds.DECIMAL_TYPE_ID_IMPL); if (isNumeric) setNumericType(); }
/** * Write this object to a stream of stored objects. * * @param out write bytes here. * * @exception IOException thrown on error */ public void writeExternal( ObjectOutput out ) throws IOException { out.writeBoolean(getJDBCTypeId() == Types.NUMERIC); super.writeExternal(out); }
return new BaseTypeIdImpl(fmtId); case StoredFormatIds.DECIMAL_TYPE_ID_IMPL: return new DecimalTypeIdImpl(false); case StoredFormatIds.DATA_TYPE_SERVICES_IMPL_V01_ID: return new OldRoutineType();
public DecimalTypeIdImpl(boolean isNumeric) { super(StoredFormatIds.DECIMAL_TYPE_ID_IMPL); if (isNumeric) setNumericType(); }
/** * Read this object from a stream of stored objects. * * @param in read this. * * @exception IOException thrown on error * @exception ClassNotFoundException thrown on error */ public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException { boolean isNumeric = in.readBoolean(); super.readExternal(in); if (isNumeric) { setNumericType(); } }
/** * Read this object from a stream of stored objects. * * @param in read this. * * @exception IOException thrown on error * @exception ClassNotFoundException thrown on error */ public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException { boolean isNumeric = in.readBoolean(); super.readExternal(in); if (isNumeric) { setNumericType(); } }
/** * Read this object from a stream of stored objects. * * @param in read this. * * @exception IOException thrown on error * @exception ClassNotFoundException thrown on error */ public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException { boolean isNumeric = in.readBoolean(); super.readExternal(in); if (isNumeric) { setNumericType(); } }