Lines Matching refs:put

43  *   {@link #put($type$) </code><i>put</i><code>} methods that read and write
50 * <li><p> Relative {@link #put($type$[]) </code><i>bulk put</i><code>}
58 * and {@link #putChar(char) </code><i>put</i><code>} methods that read and
140 * <i>get</i> and <i>put</i> methods for each type. For 32-bit floating-point
151 * parameters of the absolute <i>get</i> and <i>put</i> methods are in terms of
169 * type-specific <i>get</i> and <i>put</i> methods described above:
176 * <li><p> A view buffer provides relative bulk <i>get</i> and <i>put</i>
239 * cb.put("text/");
240 * cb.put(subtype);
241 * cb.put("; charset=");
242 * cb.put(enc);</pre></blockquote>
247 * cb.put("text/").put(subtype).put("; charset=").put(enc);</pre></blockquote>
400 * changes made are the results of a put operation. No flipping or
424 target.put(this);
545 // -- Singleton get/put methods --
559 * Relative <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
575 public abstract $Type$Buffer put($type$ $x$);
593 * Absolute <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
613 public abstract $Type$Buffer put(int index, $type$ $x$);
698 // -- Bulk put operations --
701 * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
716 * <tt>dst.put(src)</tt> has exactly the same effect as the loop
720 * dst.put(src.get()); </pre>
741 public $Type$Buffer put($Type$Buffer src) {
748 put(src.get());
753 * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
768 * <tt>dst.put(src,&nbsp;off,&nbsp;len)</tt> has exactly the same effect as
773 * dst.put(a[i]); </pre>
802 public $Type$Buffer put($type$[] src, int offset, int length) {
808 this.put(src[i]);
813 * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
817 * form <tt>dst.put(a)</tt> behaves in exactly the same way as the
821 * dst.put(a, 0, a.length) </pre>
831 public final $Type$Buffer put($type$[] src) {
832 return put(src, 0, src.length);
838 * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
854 * <tt>dst.put(src,&nbsp;start,&nbsp;end)</tt> has exactly the same effect
859 * dst.put(src.charAt(i)); </pre>
889 public $Type$Buffer put(String src, int start, int end) {
892 this.put(src.charAt(i));
897 * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
901 * <tt>dst.put(s)</tt> behaves in exactly the same way as the invocation
904 * dst.put(s, 0, s.length()) </pre>
914 public final $Type$Buffer put(String src) {
915 return put(src, 0, src.length());
1008 * followed immediately by an invocation of another relative <i>put</i>
1284 * dst.put(csq.toString()) </pre>
1309 return put("null");
1311 return put(csq.toString());
1323 * dst.put(csq.subSequence(start, end).toString()) </pre>
1348 return put(cs.subSequence(start, end).toString());
1359 * dst.put($x$) </pre>
1375 return put($x$);