| java.util.Properties org.apache.derby.iapi.services.io.FormatableProperties
FormatableProperties | public class FormatableProperties extends Properties implements Formatable(Code) | | A formatable holder for a java.util.Properties.
Used to avoid serializing Properties.
|
FormatableProperties | public FormatableProperties()(Code) | | Niladic constructor for formatable
|
FormatableProperties | public FormatableProperties(Properties defaults)(Code) | | Creates an empty property list with the specified
defaults.
Parameters: defaults - the defaults |
clearDefaults | public void clearDefaults()(Code) | | Clear the defaults from this Properties set.
This sets the default field to null and thus
breaks any link with the Properties set that
was the default.
|
getTypeFormatId | public int getTypeFormatId()(Code) | | Get the formatID which corresponds to this class.
the formatID of this class |
readExternal | public void readExternal(ObjectInput in) throws IOException(Code) | | Read the properties from a stream of stored objects.
Parameters: in - read this. exception: IOException - thrown on error |
writeExternal | public void writeExternal(ObjectOutput out) throws IOException(Code) | | Write the properties out. Step through
the enumeration and write the strings out
in UTF.
Parameters: out - write bytes here exception: IOException - thrown on error |
|
|