/** * Read the name value pair. */ public void _read(InputStream input) { value = NameValuePairHelper.read(input); }
/** * Return the typecode of the name value pair. */ public TypeCode _type() { return NameValuePairHelper.type(); }
/** * Write the name value pair. */ public void _write(OutputStream output) { NameValuePairHelper.write(output, value); }