Lines Matching refs:value

51      * Writes a boolean value to this stream.
52 * @param value the value to be written.
54 public abstract void write_boolean(boolean value);
56 * Writes a char value to this stream.
57 * @param value the value to be written.
59 public abstract void write_char(char value);
61 * Writes a wide char value to this stream.
62 * @param value the value to be written.
64 public abstract void write_wchar(char value);
66 * Writes a CORBA octet (i.e. byte) value to this stream.
67 * @param value the value to be written.
69 public abstract void write_octet(byte value);
71 * Writes a short value to this stream.
72 * @param value the value to be written.
74 public abstract void write_short(short value);
76 * Writes an unsigned short value to this stream.
77 * @param value the value to be written.
79 public abstract void write_ushort(short value);
81 * Writes a CORBA long (i.e. Java int) value to this stream.
82 * @param value the value to be written.
84 public abstract void write_long(int value);
86 * Writes an unsigned CORBA long (i.e. Java int) value to this stream.
87 * @param value the value to be written.
89 public abstract void write_ulong(int value);
91 * Writes a CORBA longlong (i.e. Java long) value to this stream.
92 * @param value the value to be written.
94 public abstract void write_longlong(long value);
96 * Writes an unsigned CORBA longlong (i.e. Java long) value to this stream.
97 * @param value the value to be written.
99 public abstract void write_ulonglong(long value);
101 * Writes a float value to this stream.
102 * @param value the value to be written.
104 public abstract void write_float(float value);
106 * Writes a double value to this stream.
107 * @param value the value to be written.
109 public abstract void write_double(double value);
111 * Writes a string value to this stream.
112 * @param value the value to be written.
114 public abstract void write_string(String value);
116 * Writes a wide string value to this stream.
117 * @param value the value to be written.
119 public abstract void write_wstring(String value);
123 * @param value the array to be written.
127 public abstract void write_boolean_array(boolean[] value, int offset,
131 * @param value the array to be written.
135 public abstract void write_char_array(char[] value, int offset,
139 * @param value the array to be written.
143 public abstract void write_wchar_array(char[] value, int offset,
147 * @param value the array to be written.
151 public abstract void write_octet_array(byte[] value, int offset,
155 * @param value the array to be written.
159 public abstract void write_short_array(short[] value, int offset,
163 * @param value the array to be written.
167 public abstract void write_ushort_array(short[] value, int offset,
171 * @param value the array to be written.
175 public abstract void write_long_array(int[] value, int offset,
179 * @param value the array to be written.
183 public abstract void write_ulong_array(int[] value, int offset,
187 * @param value the array to be written.
191 public abstract void write_longlong_array(long[] value, int offset,
195 * @param value the array to be written.
199 public abstract void write_ulonglong_array(long[] value, int offset,
203 * @param value the array to be written.
207 public abstract void write_float_array(float[] value, int offset,
211 * @param value the array to be written.
215 public abstract void write_double_array(double[] value, int offset,
219 * @param value the value to be written.
221 public abstract void write_Object(org.omg.CORBA.Object value);
224 * @param value the value to be written.
226 public abstract void write_TypeCode(TypeCode value);
229 * @param value the value to be written.
231 public abstract void write_any(Any value);
235 * @param value the value to be written.
239 public void write_Principal(Principal value) {
245 * @param b the value to be written.
256 * @param value a BidDecimal--value to be written.
258 public void write_fixed(java.math.BigDecimal value) {