src/java.base/share/classes/java/nio/X-Buffer.java.template
author bpb
Wed, 20 Feb 2019 10:57:22 -0800
changeset 53855 7c362992527a
parent 53832 842b45d8e25e
child 53959 1542e63eb537
permissions -rw-r--r--
5029431: (bf) Add absolute bulk put and get methods Reviewed-by: alanb, darcy, chegar, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
     2
 * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4502
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4502
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4502
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4502
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4502
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#warn This file is preprocessed before being compiled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
package java.nio;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#end[char]
17922
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
    33
#if[streamableType]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
    34
import java.util.Spliterator;
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
    35
import java.util.stream.StreamSupport;
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
    36
import java.util.stream.$Streamtype$Stream;
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
    37
#end[streamableType]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
    39
import java.util.Objects;
48356
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
    40
import jdk.internal.util.ArraysSupport;
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
    41
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    43
 * $A$ $type$ buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p> This class defines {#if[byte]?six:four} categories of operations upon
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    46
 * $type$ buffers:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    50
 *   <li><p> Absolute and relative {@link #get() <i>get</i>} and
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    51
 *   {@link #put($type$) <i>put</i>} methods that read and write
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    52
 *   single $type$s; </p></li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
    54
 *   <li><p> Absolute and relative {@link #get($type$[]) <i>bulk get</i>}
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    55
 *   methods that transfer contiguous sequences of $type$s from this buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *   into an array; {#if[!byte]?and}</p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
    58
 *   <li><p> Absolute and relative {@link #put($type$[]) <i>bulk put</i>}
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    59
 *   methods that transfer contiguous sequences of $type$s from $a$
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    60
 *   $type$ array{#if[char]?,&#32;a&#32;string,} or some other $type$
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *   buffer into this buffer;{#if[!byte]?&#32;and} </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    65
 *   <li><p> Absolute and relative {@link #getChar() <i>get</i>}
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    66
 *   and {@link #putChar(char) <i>put</i>} methods that read and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *   write values of other primitive types, translating them to and from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *   sequences of bytes in a particular byte order; </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *   <li><p> Methods for creating <i><a href="#views">view buffers</a></i>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *   which allow a byte buffer to be viewed as a buffer containing values of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *   some other primitive type; and </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
38321
ff5b89346438 8150785: (bf) Hoist slice and duplicate methods up to java.nio.Buffer
prappo
parents: 36933
diff changeset
    76
 *   <li><p> A method for {@link #compact compacting}
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    77
 *   $a$ $type$ buffer.  </p></li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    81
 * <p> $Type$ buffers can be created either by {@link #allocate
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    82
 * <i>allocation</i>}, which allocates space for the buffer's
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    86
 * content, or by {@link #wrap($type$[]) <i>wrapping</i>} an
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    87
 * existing $type$ array {#if[char]?or&#32;string} into a buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
#else[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    91
 * content, by {@link #wrap($type$[]) <i>wrapping</i>} an existing
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
    92
 * $type$ array {#if[char]?or&#32;string} into a buffer, or by creating a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <a href="ByteBuffer.html#views"><i>view</i></a> of an existing byte buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *
44851
3439a92526a0 8179413: Fix remaining minor HTML5 issues in java.base module
jjg
parents: 44369
diff changeset
    99
 * <a id="direct"></a>
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   100
 * <h2> Direct <i>vs.</i> non-direct buffers </h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * <p> A byte buffer is either <i>direct</i> or <i>non-direct</i>.  Given a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * direct byte buffer, the Java virtual machine will make a best effort to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * perform native I/O operations directly upon it.  That is, it will attempt to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * avoid copying the buffer's content to (or from) an intermediate buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * before (or after) each invocation of one of the underlying operating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * system's native I/O operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * <p> A direct byte buffer may be created by invoking the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * #allocateDirect(int) allocateDirect} factory method of this class.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * buffers returned by this method typically have somewhat higher allocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * and deallocation costs than non-direct buffers.  The contents of direct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * buffers may reside outside of the normal garbage-collected heap, and so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * their impact upon the memory footprint of an application might not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * obvious.  It is therefore recommended that direct buffers be allocated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * primarily for large, long-lived buffers that are subject to the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * system's native I/O operations.  In general it is best to allocate direct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * buffers only when they yield a measureable gain in program performance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * <p> A direct byte buffer may also be created by {@link
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   121
 * java.nio.channels.FileChannel#map mapping} a region of a file
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * directly into memory.  An implementation of the Java platform may optionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * support the creation of direct byte buffers from native code via JNI.  If an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * instance of one of these kinds of buffers refers to an inaccessible region
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * of memory then an attempt to access that region will not change the buffer's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * content and will cause an unspecified exception to be thrown either at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * time of the access or at some later time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * <p> Whether a byte buffer is direct or non-direct may be determined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * invoking its {@link #isDirect isDirect} method.  This method is provided so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * that explicit buffer management can be done in performance-critical code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *
44851
3439a92526a0 8179413: Fix remaining minor HTML5 issues in java.base module
jjg
parents: 44369
diff changeset
   134
 * <a id="bin"></a>
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   135
 * <h2> Access to binary data </h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * <p> This class defines methods for reading and writing values of all other
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   138
 * primitive types, except {@code boolean}.  Primitive values are translated
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * to (or from) sequences of bytes according to the buffer's current byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * order, which may be retrieved and modified via the {@link #order order}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * methods.  Specific byte orders are represented by instances of the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * ByteOrder} class.  The initial order of a byte buffer is always {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * <p> For access to heterogeneous binary data, that is, sequences of values of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * different types, this class defines a family of absolute and relative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * <i>get</i> and <i>put</i> methods for each type.  For 32-bit floating-point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * values, for example, this class defines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * float  {@link #getFloat()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * float  {@link #getFloat(int) getFloat(int index)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 *  void  {@link #putFloat(float) putFloat(float f)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *  void  {@link #putFloat(int,float) putFloat(int index, float f)}</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   156
 * <p> Corresponding methods are defined for the types {@code char,
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   157
 * short, int, long}, and {@code double}.  The index
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * parameters of the absolute <i>get</i> and <i>put</i> methods are in terms of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * bytes rather than of the type being read or written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 *
44851
3439a92526a0 8179413: Fix remaining minor HTML5 issues in java.base module
jjg
parents: 44369
diff changeset
   161
 * <a id="views"></a>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * <p> For access to homogeneous binary data, that is, sequences of values of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * the same type, this class defines methods that can create <i>views</i> of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * given byte buffer.  A <i>view buffer</i> is simply another buffer whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * content is backed by the byte buffer.  Changes to the byte buffer's content
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * will be visible in the view buffer, and vice versa; the two buffers'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * position, limit, and mark values are independent.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 * #asFloatBuffer() asFloatBuffer} method, for example, creates an instance of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 * the {@link FloatBuffer} class that is backed by the byte buffer upon which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 * the method is invoked.  Corresponding view-creation methods are defined for
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   172
 * the types {@code char, short, int, long}, and {@code double}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * <p> View buffers have three important advantages over the families of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * type-specific <i>get</i> and <i>put</i> methods described above:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 *   <li><p> A view buffer is indexed not in terms of bytes but rather in terms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 *   of the type-specific size of its values;  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 *   <li><p> A view buffer provides relative bulk <i>get</i> and <i>put</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 *   methods that can transfer contiguous sequences of values between a buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 *   and an array or some other buffer of the same type; and  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 *   <li><p> A view buffer is potentially much more efficient because it will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 *   be direct if, and only if, its backing byte buffer is direct.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 * <p> The byte order of a view buffer is fixed to be that of its byte buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 * at the time that the view is created.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
#if[!byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   198
 * <p> Like a byte buffer, $a$ $type$ buffer is either <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 * href="ByteBuffer.html#direct"><i>direct</i> or <i>non-direct</i></a>.  A
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   200
 * $type$ buffer created via the {@code wrap} methods of this class will
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   201
 * be non-direct.  $A$ $type$ buffer created as a view of a byte buffer will
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 * be direct if, and only if, the byte buffer itself is direct.  Whether or not
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   203
 * $a$ $type$ buffer is direct may be determined by invoking the {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 * #isDirect isDirect} method.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
#end[!byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 * <p> This class implements the {@link CharSequence} interface so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * character buffers may be used wherever character sequences are accepted, for
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   212
 * example in the regular-expression package {@link java.util.regex}.
53832
842b45d8e25e 8065262: (bf spec) CharBuffer.chars() should make it clearer that the sequence starts from the buffer position
bpb
parents: 50596
diff changeset
   213
 * The methods defined by {@code CharSequence} operate relative to the current
842b45d8e25e 8065262: (bf spec) CharBuffer.chars() should make it clearer that the sequence starts from the buffer position
bpb
parents: 50596
diff changeset
   214
 * position of the buffer when they are invoked.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 * </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
#end[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
#if[byte]
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   220
 * <h2> Invocation chaining </h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 * <p> Methods in this class that do not otherwise have a value to return are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
 * specified to return the buffer upon which they are invoked.  This allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
 * method invocations to be chained.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
 * The sequence of statements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
 * bb.putInt(0xCAFEBABE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
 * bb.putShort(3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
 * bb.putShort(45);</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 * can, for example, be replaced by the single statement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
 * bb.putInt(0xCAFEBABE).putShort(3).putShort(45);</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
 * The sequence of statements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 * cb.put("text/");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
 * cb.put(subtype);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
 * cb.put("; charset=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
 * cb.put(enc);</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
 * can, for example, be replaced by the single statement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
 * cb.put("text/").put(subtype).put("; charset=").put(enc);</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
#end[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 * @author Mark Reinhold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 * @author JSR-51 Expert Group
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
public abstract class $Type$Buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    extends Buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    implements Comparable<$Type$Buffer>{#if[char]?, Appendable, CharSequence, Readable}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    // These fields are declared here rather than in Heap-X-Buffer in order to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    // reduce the number of virtual method invocations needed to access these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    // values, which is especially costly when coding small buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    final $type$[] hb;                  // Non-null only for heap buffers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    final int offset;
36933
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
   276
    boolean isReadOnly;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    // Creates a new buffer with the given mark, position, limit, capacity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    // backing array, and array offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    $Type$Buffer(int mark, int pos, int lim, int cap,   // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                 $type$[] hb, int offset)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        super(mark, pos, lim, cap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        this.hb = hb;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        this.offset = offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    // Creates a new buffer with the given mark, position, limit, and capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    $Type$Buffer(int mark, int pos, int lim, int cap) { // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        this(mark, pos, lim, cap, null, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
48356
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
   295
    @Override
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
   296
    Object base() {
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
   297
        return hb;
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
   298
    }
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
   299
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   303
     * Allocates a new direct $type$ buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * <p> The new buffer's position will be zero, its limit will be its
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   306
     * capacity, its mark will be undefined, each of its elements will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   307
     * initialized to zero, and its byte order will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   308
     * {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.  Whether or not it has a
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   309
     * {@link #hasArray backing array} is unspecified.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @param  capacity
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   312
     *         The new buffer's capacity, in $type$s
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   314
     * @return  The new $type$ buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @throws  IllegalArgumentException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   317
     *          If the {@code capacity} is a negative integer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    public static $Type$Buffer allocateDirect(int capacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        return new Direct$Type$Buffer(capacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   326
     * Allocates a new $type$ buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * <p> The new buffer's position will be zero, its limit will be its
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   329
     * capacity, its mark will be undefined, each of its elements will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   330
     * initialized to zero, and its byte order will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   331
#if[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   332
     * {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   333
#else[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   334
     * the {@link ByteOrder#nativeOrder native order} of the underlying
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   335
     * hardware.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   336
#end[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   337
     * It will have a {@link #array backing array}, and its
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   338
     * {@link #arrayOffset array offset} will be zero.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * @param  capacity
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   341
     *         The new buffer's capacity, in $type$s
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   343
     * @return  The new $type$ buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @throws  IllegalArgumentException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   346
     *          If the {@code capacity} is a negative integer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public static $Type$Buffer allocate(int capacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        if (capacity < 0)
31873
87b015c2cd36 8065556: (bf) Buffer.position and other methods should include detail in IAE
bpb
parents: 31723
diff changeset
   350
            throw createCapacityException(capacity);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        return new Heap$Type$Buffer(capacity, capacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   355
     * Wraps $a$ $type$ array into a buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   357
     * <p> The new buffer will be backed by the given $type$ array;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * that is, modifications to the buffer will cause the array to be modified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * and vice versa.  The new buffer's capacity will be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   360
     * {@code array.length}, its position will be {@code offset}, its limit
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   361
     * will be {@code offset + length}, its mark will be undefined, and its
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   362
     * byte order will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   363
#if[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   364
     * {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   365
#else[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   366
     * the {@link ByteOrder#nativeOrder native order} of the underlying
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   367
     * hardware.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   368
#end[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   369
     * Its {@link #array backing array} will be the given array, and
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   370
     * its {@link #arrayOffset array offset} will be zero.  </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * @param  array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     *         The array that will back the new buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *         The offset of the subarray to be used; must be non-negative and
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   377
     *         no larger than {@code array.length}.  The new buffer's position
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *         will be set to this value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @param  length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *         The length of the subarray to be used;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     *         must be non-negative and no larger than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   383
     *         {@code array.length - offset}.
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   384
     *         The new buffer's limit will be set to {@code offset + length}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   386
     * @return  The new $type$ buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   389
     *          If the preconditions on the {@code offset} and {@code length}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *          parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    public static $Type$Buffer wrap($type$[] array,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                                    int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            return new Heap$Type$Buffer(array, offset, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        } catch (IllegalArgumentException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   403
     * Wraps $a$ $type$ array into a buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   405
     * <p> The new buffer will be backed by the given $type$ array;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * that is, modifications to the buffer will cause the array to be modified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * and vice versa.  The new buffer's capacity and limit will be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   408
     * {@code array.length}, its position will be zero, its mark will be
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   409
     * undefined, and its byte order will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   410
#if[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   411
     * {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   412
#else[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   413
     * the {@link ByteOrder#nativeOrder native order} of the underlying
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   414
     * hardware.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   415
#end[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   416
     * Its {@link #array backing array} will be the given array, and its
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   417
     * {@link #arrayOffset array offset} will be zero.  </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @param  array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *         The array that will back this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   422
     * @return  The new $type$ buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    public static $Type$Buffer wrap($type$[] array) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        return wrap(array, 0, array.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * Attempts to read characters into the specified character buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * The buffer is used as a repository of characters as-is: the only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * changes made are the results of a put operation. No flipping or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * rewinding of the buffer is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @param target the buffer to read characters into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @return The number of characters added to the buffer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *         -1 if this source of characters is at its end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @throws IOException if an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @throws ReadOnlyBufferException if target is a read only buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    public int read(CharBuffer target) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        // Determine the number of bytes n that can be transferred
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        int targetRemaining = target.remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        int remaining = remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        if (remaining == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        int n = Math.min(remaining, targetRemaining);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        int limit = limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        // Set source limit to prevent target overflow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        if (targetRemaining < remaining)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
            limit(position() + n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
            if (n > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                target.put(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            limit(limit); // restore real limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * Wraps a character sequence into a buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * <p> The content of the new, read-only buffer will be the content of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * given character sequence.  The buffer's capacity will be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   468
     * {@code csq.length()}, its position will be {@code start}, its limit
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   469
     * will be {@code end}, and its mark will be undefined.  </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @param  csq
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     *         The character sequence from which the new character buffer is to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     *         be created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * @param  start
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     *         The index of the first character to be used;
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   477
     *         must be non-negative and no larger than {@code csq.length()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     *         The new buffer's position will be set to this value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * @param  end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     *         The index of the character following the last character to be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   482
     *         used; must be no smaller than {@code start} and no larger
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   483
     *         than {@code csq.length()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     *         The new buffer's limit will be set to this value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @return  The new character buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   489
     *          If the preconditions on the {@code start} and {@code end}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     *          parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public static CharBuffer wrap(CharSequence csq, int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
            return new StringCharBuffer(csq, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        } catch (IllegalArgumentException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * Wraps a character sequence into a buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * <p> The content of the new, read-only buffer will be the content of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * given character sequence.  The new buffer's capacity and limit will be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   505
     * {@code csq.length()}, its position will be zero, and its mark will be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * undefined.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @param  csq
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     *         The character sequence from which the new character buffer is to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     *         be created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * @return  The new character buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    public static CharBuffer wrap(CharSequence csq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        return wrap(csq, 0, csq.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
#end[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   521
     * Creates a new $type$ buffer whose content is a shared subsequence of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * this buffer's content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * <p> The content of the new buffer will start at this buffer's current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * position.  Changes to this buffer's content will be visible in the new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * buffer, and vice versa; the two buffers' position, limit, and mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * values will be independent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * <p> The new buffer's position will be zero, its capacity and its limit
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   530
     * will be the number of $type$s remaining in this buffer, its mark will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   531
     * undefined, and its byte order will be
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   532
#if[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   533
     * {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   534
#else[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   535
     * identical to that of this buffer.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   536
#end[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   537
     * The new buffer will be direct if, and only if, this buffer is direct, and
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   538
     * it will be read-only if, and only if, this buffer is read-only.  </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   540
     * @return  The new $type$ buffer
36933
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
   541
#if[byte]
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
   542
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
   543
     * @see #alignedSlice(int)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
   544
#end[byte]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     */
38321
ff5b89346438 8150785: (bf) Hoist slice and duplicate methods up to java.nio.Buffer
prappo
parents: 36933
diff changeset
   546
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    public abstract $Type$Buffer slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   550
     * Creates a new $type$ buffer that shares this buffer's content.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * <p> The content of the new buffer will be that of this buffer.  Changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * to this buffer's content will be visible in the new buffer, and vice
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * versa; the two buffers' position, limit, and mark values will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * independent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   557
     * <p> The new buffer's capacity, limit, position,
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   558
#if[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   559
     * and mark values will be identical to those of this buffer, and its byte
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   560
     * order will be {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   561
#else[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   562
     * mark values, and byte order will be identical to those of this buffer.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   563
#end[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   564
     * The new buffer will be direct if, and only if, this buffer is direct, and
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   565
     * it will be read-only if, and only if, this buffer is read-only.  </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   567
     * @return  The new $type$ buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     */
38321
ff5b89346438 8150785: (bf) Hoist slice and duplicate methods up to java.nio.Buffer
prappo
parents: 36933
diff changeset
   569
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    public abstract $Type$Buffer duplicate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   573
     * Creates a new, read-only $type$ buffer that shares this buffer's
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * <p> The content of the new buffer will be that of this buffer.  Changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * to this buffer's content will be visible in the new buffer; the new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * buffer itself, however, will be read-only and will not allow the shared
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * content to be modified.  The two buffers' position, limit, and mark
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * values will be independent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *
31723
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   582
     * <p> The new buffer's capacity, limit, position,
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   583
#if[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   584
     * and mark values will be identical to those of this buffer, and its byte
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   585
     * order will be {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   586
#else[byte]
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   587
     * mark values, and byte order will be identical to those of this buffer.
2e16a59cc5cb 8065570: (bf spec) ByteBuffer.slice() should make it clear that the initial order is BIG_ENDIAN
bpb
parents: 27292
diff changeset
   588
#end[byte]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * <p> If this buffer is itself read-only then this method behaves in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * exactly the same way as the {@link #duplicate duplicate} method.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   593
     * @return  The new, read-only $type$ buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    public abstract $Type$Buffer asReadOnlyBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    // -- Singleton get/put methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   601
     * Relative <i>get</i> method.  Reads the $type$ at this buffer's
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
   602
     * current position, and then increments the position.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   604
     * @return  The $type$ at the buffer's current position
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * @throws  BufferUnderflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     *          If the buffer's current position is not smaller than its limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    public abstract $type$ get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Relative <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   614
     * <p> Writes the given $type$ into this buffer at the current
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * position, and then increments the position. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * @param  $x$
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   618
     *         The $type$ to be written
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     *          If this buffer's current position is not smaller than its limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    public abstract $Type$Buffer put($type$ $x$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   631
     * Absolute <i>get</i> method.  Reads the $type$ at the given
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
   632
     * index.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * @param  index
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   635
     *         The index from which the $type$ will be read
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   637
     * @return  The $type$ at the given index
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   640
     *          If {@code index} is negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     *          or not smaller than the buffer's limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    public abstract $type$ get(int index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
17922
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   645
#if[streamableType]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   646
    /**
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   647
     * Absolute <i>get</i> method.  Reads the $type$ at the given
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   648
     * index without any validation of the index.
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   649
     *
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   650
     * @param  index
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   651
     *         The index from which the $type$ will be read
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   652
     *
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   653
     * @return  The $type$ at the given index
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   654
     */
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   655
    abstract $type$ getUnchecked(int index);   // package-private
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   656
#end[streamableType]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
   657
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * Absolute <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   661
     * <p> Writes the given $type$ into this buffer at the given
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * index. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * @param  index
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   665
     *         The index at which the $type$ will be written
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * @param  $x$
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   668
     *         The $type$ value to be written
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   673
     *          If {@code index} is negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     *          or not smaller than the buffer's limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    public abstract $Type$Buffer put(int index, $type$ $x$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    // -- Bulk get operations --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * Relative bulk <i>get</i> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   687
     * <p> This method transfers $type$s from this buffer into the given
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   688
     * destination array.  If there are fewer $type$s remaining in the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * buffer than are required to satisfy the request, that is, if
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   690
     * {@code length}&nbsp;{@code >}&nbsp;{@code remaining()}, then no
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   691
     * $type$s are transferred and a {@link BufferUnderflowException} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   694
     * <p> Otherwise, this method copies {@code length} $type$s from this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * buffer into the given array, starting at the current position of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * buffer and at the given offset in the array.  The position of this
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   697
     * buffer is then incremented by {@code length}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * <p> In other words, an invocation of this method of the form
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   700
     * <code>src.get(dst,&nbsp;off,&nbsp;len)</code> has exactly the same effect as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * the loop
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
   703
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     *     for (int i = off; i < off + len; i++)
49953
a17d59ffca47 8202397: Typo in X-Buffer javadoc
martin
parents: 49581
diff changeset
   705
     *         dst[i] = src.get();
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
   706
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   708
     * except that it first checks that there are sufficient $type$s in
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
   709
     * this buffer and it is potentially much more efficient.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * @param  dst
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   712
     *         The array into which $type$s are to be written
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * @param  offset
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   715
     *         The offset within the array of the first $type$ to be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     *         written; must be non-negative and no larger than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   717
     *         {@code dst.length}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * @param  length
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   720
     *         The maximum number of $type$s to be written to the given
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     *         array; must be non-negative and no larger than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   722
     *         {@code dst.length - offset}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * @throws  BufferUnderflowException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   727
     *          If there are fewer than {@code length} $type$s
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     *          remaining in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   731
     *          If the preconditions on the {@code offset} and {@code length}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     *          parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    public $Type$Buffer get($type$[] dst, int offset, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        checkBounds(offset, length, dst.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        if (length > remaining())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
            throw new BufferUnderflowException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        int end = offset + length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        for (int i = offset; i < end; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
            dst[i] = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     * Relative bulk <i>get</i> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   747
     * <p> This method transfers $type$s from this buffer into the given
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * destination array.  An invocation of this method of the form
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   749
     * {@code src.get(a)} behaves in exactly the same way as the invocation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     *     src.get(a, 0, a.length) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   754
     * @param   dst
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   755
     *          The destination array
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   756
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * @throws  BufferUnderflowException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   760
     *          If there are fewer than {@code length} $type$s
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     *          remaining in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    public $Type$Buffer get($type$[] dst) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        return get(dst, 0, dst.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   767
    /**
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   768
     * Absolute bulk <i>get</i> method.
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   769
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   770
     * <p> This method transfers {@code length} $type$s from this
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   771
     * buffer into the given array, starting at the given index in this
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   772
     * buffer and at the given offset in the array.  The position of this
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   773
     * buffer is unchanged.
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   774
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   775
     * <p> An invocation of this method of the form
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   776
     * <code>src.get(index,&nbsp;dst,&nbsp;offset,&nbsp;length)</code>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   777
     * has exactly the same effect as the following loop except that it first
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   778
     * checks the consistency of the supplied parameters and it is potentially
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   779
     * much more efficient:
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   780
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   781
     * <pre>{@code
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   782
     *     for (int i = offset, j = index; i < offset + length; i++, j++)
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   783
     *         dst[i] = src.get(j);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   784
     * }</pre>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   785
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   786
     * @param  index
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   787
     *         The index in this buffer from which the first $type$ will be
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   788
     *         read; must be non-negative and less than {@code limit()}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   789
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   790
     * @param  dst
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   791
     *         The destination array
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   792
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   793
     * @param  offset
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   794
     *         The offset within the array of the first $type$ to be
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   795
     *         written; must be non-negative and less than
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   796
     *         {@code dst.length}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   797
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   798
     * @param  length
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   799
     *         The number of $type$s to be written to the given array;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   800
     *         must be non-negative and no larger than the smaller of
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   801
     *         {@code limit() - index} and {@code dst.length - offset}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   802
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   803
     * @return  This buffer
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   804
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   805
     * @throws  IndexOutOfBoundsException
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   806
     *          If the preconditions on the {@code index}, {@code offset}, and
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   807
     *          {@code length} parameters do not hold
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   808
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   809
     * @since 13
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   810
     */
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   811
    public $Type$Buffer get(int index, $type$[] dst, int offset, int length) {
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   812
        Objects.checkFromIndexSize(index, length, limit());
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   813
        Objects.checkFromIndexSize(offset, length, dst.length);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   814
        int end = offset + length;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   815
        for (int i = offset, j = index; i < end; i++, j++)
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   816
            dst[i] = get(j);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   817
        return this;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   818
    }
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   819
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   820
    /**
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   821
     * Absolute bulk <i>get</i> method.
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   822
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   823
     * <p> This method transfers $type$s from this buffer into the given
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   824
     * destination array.  The position of this buffer is unchanged.  An
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   825
     * invocation of this method of the form
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   826
     * <code>src.get(index,&nbsp;dst)</code> behaves in exactly the same
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   827
     * way as the invocation:
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   828
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   829
     * <pre>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   830
     *     src.get(index, dst, 0, dst.length) </pre>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   831
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   832
     * @param  index
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   833
     *         The index in this buffer from which the first $type$ will be
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   834
     *         read; must be non-negative and less than {@code limit()}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   835
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   836
     * @param  dst
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   837
     *         The destination array
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   838
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   839
     * @return  This buffer
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   840
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   841
     * @throws  IndexOutOfBoundsException
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   842
     *          If {@code index} is negative, not smaller than {@code limit()},
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   843
     *          or {@code limit() - index < dst.length}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   844
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   845
     * @since 13
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   846
     */
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   847
    public $Type$Buffer get(int index, $type$[] dst) {
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   848
        return get(index, dst, 0, dst.length);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   849
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
    // -- Bulk put operations --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   856
     * <p> This method transfers the $type$s remaining in the given source
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   857
     * buffer into this buffer.  If there are more $type$s remaining in the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
     * source buffer than in this buffer, that is, if
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   859
     * {@code src.remaining()}&nbsp;{@code >}&nbsp;{@code remaining()},
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   860
     * then no $type$s are transferred and a {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * BufferOverflowException} is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * <p> Otherwise, this method copies
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   864
     * <i>n</i>&nbsp;=&nbsp;{@code src.remaining()} $type$s from the given
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * buffer into this buffer, starting at each buffer's current position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * The positions of both buffers are then incremented by <i>n</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * <p> In other words, an invocation of this method of the form
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   869
     * {@code dst.put(src)} has exactly the same effect as the loop
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     *     while (src.hasRemaining())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     *         dst.put(src.get()); </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
     * except that it first checks that there is sufficient space in this
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
   876
     * buffer and it is potentially much more efficient.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * @param  src
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   879
     *         The source buffer from which $type$s are to be read;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     *         must not be this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     *          If there is insufficient space in this buffer
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   886
     *          for the remaining $type$s in the source buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     *          If the source buffer is this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    public $Type$Buffer put($Type$Buffer src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        if (src == this)
31873
87b015c2cd36 8065556: (bf) Buffer.position and other methods should include detail in IAE
bpb
parents: 31723
diff changeset
   896
            throw createSameBufferException();
14001
e8e8413ad49a 7199551: (bf) CharBuffer.append(CharSequence) throws BufferOverflowException for read-only buffer
alanb
parents: 13563
diff changeset
   897
        if (isReadOnly())
e8e8413ad49a 7199551: (bf) CharBuffer.append(CharSequence) throws BufferOverflowException for read-only buffer
alanb
parents: 13563
diff changeset
   898
            throw new ReadOnlyBufferException();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        int n = src.remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        if (n > remaining())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            throw new BufferOverflowException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        for (int i = 0; i < n; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
            put(src.get());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   910
     * <p> This method transfers $type$s into this buffer from the given
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   911
     * source array.  If there are more $type$s to be copied from the array
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     * than remain in this buffer, that is, if
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   913
     * {@code length}&nbsp;{@code >}&nbsp;{@code remaining()}, then no
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   914
     * $type$s are transferred and a {@link BufferOverflowException} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     * thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   917
     * <p> Otherwise, this method copies {@code length} $type$s from the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * given array into this buffer, starting at the given offset in the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     * and at the current position of this buffer.  The position of this buffer
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   920
     * is then incremented by {@code length}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     * <p> In other words, an invocation of this method of the form
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   923
     * <code>dst.put(src,&nbsp;off,&nbsp;len)</code> has exactly the same effect as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     * the loop
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
   926
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     *     for (int i = off; i < off + len; i++)
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   928
     *         dst.put(src[i]);
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
   929
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     * except that it first checks that there is sufficient space in this
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
   932
     * buffer and it is potentially much more efficient.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     * @param  src
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   935
     *         The array from which $type$s are to be read
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     * @param  offset
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   938
     *         The offset within the array of the first $type$ to be read;
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   939
     *         must be non-negative and no larger than {@code src.length}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     * @param  length
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   942
     *         The number of $type$s to be read from the given array;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     *         must be non-negative and no larger than
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   944
     *         {@code src.length - offset}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   952
     *          If the preconditions on the {@code offset} and {@code length}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     *          parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
    public $Type$Buffer put($type$[] src, int offset, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        checkBounds(offset, length, src.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        if (length > remaining())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
            throw new BufferOverflowException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        int end = offset + length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        for (int i = offset; i < end; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
            this.put(src[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * <p> This method transfers the entire content of the given source
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
   972
     * $type$ array into this buffer.  An invocation of this method of the
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
   973
     * form {@code dst.put(a)} behaves in exactly the same way as the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     *     dst.put(a, 0, a.length) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   979
     * @param   src
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   980
     *          The source array
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   981
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    public final $Type$Buffer put($type$[] src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        return put(src, 0, src.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
53855
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   994
    /**
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   995
     * Absolute bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   996
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   997
     * <p> This method transfers {@code length} $type$s from the given
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   998
     * array, starting at the given offset in the array and at the given index
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
   999
     * in this buffer.  The position of this buffer is unchanged.
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1000
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1001
     * <p> An invocation of this method of the form
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1002
     * <code>dst.put(index,&nbsp;src,&nbsp;offset,&nbsp;length)</code>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1003
     * has exactly the same effect as the following loop except that it first
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1004
     * checks the consistency of the supplied parameters and it is potentially
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1005
     * much more efficient:
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1006
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1007
     * <pre>{@code
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1008
     *     for (int i = offset, j = index; i < offset + length; i++, j++)
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1009
     *         dst.put(j, src[i]);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1010
     * }</pre>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1011
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1012
     * @param  index
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1013
     *         The index in this buffer at which the first $type$ will be
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1014
     *         written; must be non-negative and less than {@code limit()}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1015
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1016
     * @param  src
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1017
     *         The array from which $type$s are to be read
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1018
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1019
     * @param  offset
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1020
     *         The offset within the array of the first $type$ to be read;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1021
     *         must be non-negative and less than {@code src.length}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1022
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1023
     * @param  length
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1024
     *         The number of $type$s to be read from the given array;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1025
     *         must be non-negative and no larger than the smaller of
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1026
     *         {@code limit() - index} and {@code src.length - offset}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1027
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1028
     * @return  This buffer
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1029
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1030
     * @throws  IndexOutOfBoundsException
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1031
     *          If the preconditions on the {@code index}, {@code offset}, and
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1032
     *          {@code length} parameters do not hold
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1033
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1034
     * @throws  ReadOnlyBufferException
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1035
     *          If this buffer is read-only
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1036
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1037
     * @since 13
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1038
     */
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1039
    public $Type$Buffer put(int index, $type$[] src, int offset, int length) {
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1040
        if (isReadOnly())
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1041
            throw new ReadOnlyBufferException();
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1042
        Objects.checkFromIndexSize(index, length, limit());
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1043
        Objects.checkFromIndexSize(offset, length, src.length);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1044
        int end = offset + length;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1045
        for (int i = offset, j = index; i < end; i++, j++)
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1046
            this.put(j, src[i]);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1047
        return this;
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1048
    }
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1049
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1050
    /**
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1051
     * Absolute bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1052
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1053
     * <p> This method copies $type$s into this buffer from the given source
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1054
     * array.  The position of this buffer is unchanged.  An invocation of this
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1055
     * method of the form <code>dst.put(index,&nbsp;src)</code>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1056
     * behaves in exactly the same way as the invocation:
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1057
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1058
     * <pre>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1059
     *     dst.put(index, src, 0, src.length); </pre>
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1060
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1061
     * @param  index
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1062
     *         The index in this buffer at which the first $type$ will be
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1063
     *         written; must be non-negative and less than {@code limit()}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1064
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1065
     * @param  src
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1066
     *         The array from which $type$s are to be read
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1067
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1068
     * @return  This buffer
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1069
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1070
     * @throws  IndexOutOfBoundsException
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1071
     *          If {@code index} is negative, not smaller than {@code limit()},
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1072
     *          or {@code limit() - index < src.length}
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1073
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1074
     * @throws  ReadOnlyBufferException
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1075
     *          If this buffer is read-only
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1076
     *
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1077
     * @since 13
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1078
     */
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1079
    public $Type$Buffer put(int index, $type$[] src) {
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1080
        return put(index, src, 0, src.length);
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1081
    }
7c362992527a 5029431: (bf) Add absolute bulk put and get methods
bpb
parents: 53832
diff changeset
  1082
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
     * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1088
     * <p> This method transfers $type$s from the given string into this
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1089
     * buffer.  If there are more $type$s to be copied from the string than
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     * remain in this buffer, that is, if
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1091
     * <code>end&nbsp;-&nbsp;start</code>&nbsp;{@code >}&nbsp;{@code remaining()},
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1092
     * then no $type$s are transferred and a {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     * BufferOverflowException} is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * <p> Otherwise, this method copies
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1096
     * <i>n</i>&nbsp;=&nbsp;{@code end}&nbsp;-&nbsp;{@code start} $type$s
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * from the given string into this buffer, starting at the given
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1098
     * {@code start} index and at the current position of this buffer.  The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * position of this buffer is then incremented by <i>n</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * <p> In other words, an invocation of this method of the form
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1102
     * <code>dst.put(src,&nbsp;start,&nbsp;end)</code> has exactly the same effect
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     * as the loop
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1105
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     *     for (int i = start; i < end; i++)
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1107
     *         dst.put(src.charAt(i));
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1108
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     * except that it first checks that there is sufficient space in this
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
  1111
     * buffer and it is potentially much more efficient.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * @param  src
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1114
     *         The string from which $type$s are to be read
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * @param  start
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1117
     *         The offset within the string of the first $type$ to be read;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *         must be non-negative and no larger than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1119
     *         {@code string.length()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * @param  end
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1122
     *         The offset within the string of the last $type$ to be read,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     *         plus one; must be non-negative and no larger than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1124
     *         {@code string.length()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1132
     *          If the preconditions on the {@code start} and {@code end}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     *          parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
    public $Type$Buffer put(String src, int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        checkBounds(start, end - start, src.length());
14001
e8e8413ad49a 7199551: (bf) CharBuffer.append(CharSequence) throws BufferOverflowException for read-only buffer
alanb
parents: 13563
diff changeset
  1140
        if (isReadOnly())
e8e8413ad49a 7199551: (bf) CharBuffer.append(CharSequence) throws BufferOverflowException for read-only buffer
alanb
parents: 13563
diff changeset
  1141
            throw new ReadOnlyBufferException();
13563
13c8e8f0302b 7190219: (bf) CharBuffer.put(String,int,int) modifies position even if BufferOverflowException thrown
luchsh
parents: 10137
diff changeset
  1142
        if (end - start > remaining())
13c8e8f0302b 7190219: (bf) CharBuffer.put(String,int,int) modifies position even if BufferOverflowException thrown
luchsh
parents: 10137
diff changeset
  1143
            throw new BufferOverflowException();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        for (int i = start; i < end; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
            this.put(src.charAt(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     * Relative bulk <i>put</i> method&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * <p> This method transfers the entire content of the given source string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     * into this buffer.  An invocation of this method of the form
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1154
     * {@code dst.put(s)} behaves in exactly the same way as the invocation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     *     dst.put(s, 0, s.length()) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
  1159
     * @param   src
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
  1160
     *          The source string
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
  1161
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
    public final $Type$Buffer put(String src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
        return put(src, 0, src.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
#end[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
    // -- Other stuff --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1180
     * Tells whether or not this buffer is backed by an accessible $type$
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
     * array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1183
     * <p> If this method returns {@code true} then the {@link #array() array}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
     * and {@link #arrayOffset() arrayOffset} methods may safely be invoked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
     * </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1187
     * @return  {@code true} if, and only if, this buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
     *          is backed by an array and is not read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
    public final boolean hasArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        return (hb != null) && !isReadOnly;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1195
     * Returns the $type$ array that backs this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
     * buffer&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
     * <p> Modifications to this buffer's content will cause the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
     * array's content to be modified, and vice versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     * <p> Invoke the {@link #hasArray hasArray} method before invoking this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
     * method in order to ensure that this buffer has an accessible backing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
     * array.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
     * @return  The array that backs this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     *          If this buffer is backed by an array but is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
     * @throws  UnsupportedOperationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     *          If this buffer is not backed by an accessible array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
    public final $type$[] array() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
        if (hb == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
        if (isReadOnly)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
            throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
        return hb;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * Returns the offset within this buffer's backing array of the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     * element of the buffer&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     * <p> If this buffer is backed by an array then buffer position <i>p</i>
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1226
     * corresponds to array index <i>p</i>&nbsp;+&nbsp;{@code arrayOffset()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     * <p> Invoke the {@link #hasArray hasArray} method before invoking this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     * method in order to ensure that this buffer has an accessible backing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     * array.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
     * @return  The offset within this buffer's array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
     *          of the first element of the buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     *          If this buffer is backed by an array but is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     * @throws  UnsupportedOperationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     *          If this buffer is not backed by an accessible array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
    public final int arrayOffset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        if (hb == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
        if (isReadOnly)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
            throw new ReadOnlyBufferException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
        return offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
27292
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1249
    // -- Covariant return type overrides
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1250
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1251
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1252
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1253
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1254
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1255
    public
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1256
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1257
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1258
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1259
    $Type$Buffer position(int newPosition) {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1260
        super.position(newPosition);
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1261
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1262
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1263
    
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1264
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1265
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1266
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1267
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1268
    public
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1269
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1270
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1271
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1272
    $Type$Buffer limit(int newLimit) {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1273
        super.limit(newLimit);
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1274
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1275
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1276
    
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1277
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1278
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1279
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1280
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1281
    public 
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1282
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1283
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1284
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1285
    $Type$Buffer mark() {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1286
        super.mark();
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1287
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1288
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1289
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1290
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1291
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1292
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1293
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1294
    public 
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1295
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1296
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1297
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1298
    $Type$Buffer reset() {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1299
        super.reset();
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1300
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1301
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1302
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1303
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1304
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1305
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1306
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1307
    public 
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1308
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1309
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1310
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1311
    $Type$Buffer clear() {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1312
        super.clear();
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1313
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1314
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1315
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1316
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1317
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1318
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1319
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1320
    public 
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1321
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1322
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1323
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1324
    $Type$Buffer flip() {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1325
        super.flip();
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1326
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1327
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1328
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1329
    /**
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1330
     * {@inheritDoc}
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1331
     */
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1332
    @Override
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1333
    public 
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1334
#if[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1335
    final
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1336
#end[!byte]
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1337
    $Type$Buffer rewind() {
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1338
        super.rewind();
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1339
        return this;
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1340
    }
7ff4b24b33ce 4774077: Use covariant return types in the NIO buffer hierarchy
rwarburton
parents: 26960
diff changeset
  1341
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * Compacts this buffer&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1345
     * <p> The $type$s between the buffer's current position and its limit,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     * if any, are copied to the beginning of the buffer.  That is, the
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1347
     * $type$ at index <i>p</i>&nbsp;=&nbsp;{@code position()} is copied
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1348
     * to index zero, the $type$ at index <i>p</i>&nbsp;+&nbsp;1 is copied
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1349
     * to index one, and so forth until the $type$ at index
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1350
     * {@code limit()}&nbsp;-&nbsp;1 is copied to index
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1351
     * <i>n</i>&nbsp;=&nbsp;{@code limit()}&nbsp;-&nbsp;{@code 1}&nbsp;-&nbsp;<i>p</i>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
     * The buffer's position is then set to <i>n+1</i> and its limit is set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
     * its capacity.  The mark, if defined, is discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1355
     * <p> The buffer's position is set to the number of $type$s copied,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
     * rather than to zero, so that an invocation of this method can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
     * followed immediately by an invocation of another relative <i>put</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
     * method. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
     * <p> Invoke this method after writing data from a buffer in case the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
     * write was incomplete.  The following loop, for example, copies bytes
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1364
     * from one channel to another via the buffer {@code buf}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1366
     * <blockquote><pre>{@code
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1367
     *   buf.clear();          // Prepare buffer for use
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1368
     *   while (in.read(buf) >= 0 || buf.position != 0) {
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1369
     *       buf.flip();
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1370
     *       out.write(buf);
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1371
     *       buf.compact();    // In case of partial write
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17922
diff changeset
  1372
     *   }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     * }</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
    public abstract $Type$Buffer compact();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
    /**
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
  1385
     * Tells whether or not this $type$ buffer is direct.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1387
     * @return  {@code true} if, and only if, this buffer is direct
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
    public abstract boolean isDirect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
#if[!char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
    /**
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
  1394
     * Returns a string summarizing the state of this buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
     * @return  A summary string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        StringBuffer sb = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        sb.append(getClass().getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
        sb.append("[pos=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        sb.append(position());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
        sb.append(" lim=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
        sb.append(limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
        sb.append(" cap=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
        sb.append(capacity());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        sb.append("]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
#end[!char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
    // ## Should really use unchecked accessors here for speed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * Returns the current hash code of this buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
     * <p> The hash code of a $type$ buffer depends only upon its remaining
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1420
     * elements; that is, upon the elements from {@code position()} up to, and
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1421
     * including, the element at {@code limit()}&nbsp;-&nbsp;{@code 1}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
     * <p> Because buffer hash codes are content-dependent, it is inadvisable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
     * to use buffers as keys in hash maps or similar data structures unless it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
     * is known that their contents will not change.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
     * @return  The current hash code of this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        int h = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
        int p = position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
        for (int i = limit() - 1; i >= p; i--)
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
  1433
#if[int]
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
  1434
            h = 31 * h + get(i);
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
  1435
#else[int]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
            h = 31 * h + (int)get(i);
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
  1437
#end[int]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
        return h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
     * Tells whether or not this buffer is equal to another object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     * <p> Two $type$ buffers are equal if, and only if,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
     *
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 18822
diff changeset
  1446
     * <ol>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
     *   <li><p> They have the same element type,  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
     *   <li><p> They have the same number of remaining elements, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
     *   </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
     *   <li><p> The two sequences of remaining elements, considered
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
     *   independently of their starting positions, are pointwise equal.
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1455
#if[floatingPointType]
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1456
     *   This method considers two $type$ elements {@code a} and {@code b}
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1457
     *   to be equal if
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1458
     *   {@code (a == b) || ($Fulltype$.isNaN(a) && $Fulltype$.isNaN(b))}.
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1459
     *   The values {@code -0.0} and {@code +0.0} are considered to be
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1460
     *   equal, unlike {@link $Fulltype$#equals(Object)}.
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1461
#end[floatingPointType]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
     *   </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
     * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
     * <p> A $type$ buffer is not equal to any other type of object.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
     * @param  ob  The object to which this buffer is to be compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1470
     * @return  {@code true} if, and only if, this buffer is equal to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
     *           given object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
    public boolean equals(Object ob) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
        if (this == ob)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
        if (!(ob instanceof $Type$Buffer))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
        $Type$Buffer that = ($Type$Buffer)ob;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
        if (this.remaining() != that.remaining())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
            return false;
48356
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1481
        return BufferMismatch.mismatch(this, this.position(),
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1482
                                       that, that.position(),
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1483
                                       this.remaining()) < 0;
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1484
    }
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1485
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
     * Compares this buffer to another.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     * <p> Two $type$ buffers are compared by comparing their sequences of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
     * remaining elements lexicographically, without regard to the starting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
     * position of each sequence within its corresponding buffer.
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1492
#if[floatingPointType]
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1493
     * Pairs of {@code $type$} elements are compared as if by invoking
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1494
     * {@link $Fulltype$#compare($type$,$type$)}, except that
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1495
     * {@code -0.0} and {@code 0.0} are considered to be equal.
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1496
     * {@code $Fulltype$.NaN} is considered by this method to be equal
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1497
     * to itself and greater than all other {@code $type$} values
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1498
     * (including {@code $Fulltype$.POSITIVE_INFINITY}).
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1499
#else[floatingPointType]
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1500
     * Pairs of {@code $type$} elements are compared as if by invoking
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1501
     * {@link $Fulltype$#compare($type$,$type$)}.
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1502
#end[floatingPointType]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
     * <p> A $type$ buffer is not comparable to any other type of object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     * @return  A negative integer, zero, or a positive integer as this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     *          is less than, equal to, or greater than the given buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
    public int compareTo($Type$Buffer that) {
48356
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1510
        int i = BufferMismatch.mismatch(this, this.position(),
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1511
                                        that, that.position(),
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1512
                                        Math.min(this.remaining(), that.remaining()));
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1513
        if (i >= 0) {
49282
271ef464fb3a 8199773: (bf) XXXBuffer:compareTo method is not working as expected
psandoz
parents: 49210
diff changeset
  1514
            return compare(this.get(this.position() + i), that.get(that.position() + i));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
        return this.remaining() - that.remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1519
    private static int compare($type$ x, $type$ y) {
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1520
#if[floatingPointType]
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1521
        return ((x < y)  ? -1 :
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1522
                (x > y)  ? +1 :
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1523
                (x == y) ?  0 :
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1524
                $Fulltype$.isNaN(x) ? ($Fulltype$.isNaN(y) ? 0 : +1) : -1);
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1525
#else[floatingPointType]
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1526
        return $Fulltype$.compare(x, y);
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1527
#end[floatingPointType]
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1528
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
50596
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1530
    /**
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1531
     * Finds and returns the relative index of the first mismatch between this
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1532
     * buffer and a given buffer.  The index is relative to the
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1533
     * {@link #position() position} of each buffer and will be in the range of
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1534
     * 0 (inclusive) up to the smaller of the {@link #remaining() remaining}
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1535
     * elements in each buffer (exclusive).
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1536
     *
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1537
     * <p> If the two buffers share a common prefix then the returned index is
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1538
     * the length of the common prefix and it follows that there is a mismatch
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1539
     * between the two buffers at that index within the respective buffers.
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1540
     * If one buffer is a proper prefix of the other then the returned index is
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1541
     * the smaller of the remaining elements in each buffer, and it follows that
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1542
     * the index is only valid for the buffer with the larger number of
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1543
     * remaining elements.
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1544
     * Otherwise, there is no mismatch.
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1545
     *
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1546
     * @param  that
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1547
     *         The byte buffer to be tested for a mismatch with this buffer
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1548
     *
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1549
     * @return  The relative index of the first mismatch between this and the
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1550
     *          given buffer, otherwise -1 if no mismatch.
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1551
     *
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1552
     * @since 11
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1553
     */
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1554
    public int mismatch($Type$Buffer that) {
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1555
        int length = Math.min(this.remaining(), that.remaining());
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1556
        int r = BufferMismatch.mismatch(this, this.position(),
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1557
                                        that, that.position(),
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1558
                                        length);
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1559
        return (r == -1 && this.remaining() != that.remaining()) ? length : r;
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1560
    }
7cf6578a6b0b 8202216: Add Buffer mismatch methods
vtheeyarath
parents: 49953
diff changeset
  1561
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
    // -- Other char stuff --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
#if[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
     * Returns a string containing the characters in this buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     * <p> The first character of the resulting string will be the character at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * this buffer's position, while the last character will be the character
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1571
     * at index {@code limit()}&nbsp;-&nbsp;1.  Invoking this method does not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     * change the buffer's position. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     * @return  The specified string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
        return toString(position(), limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
    abstract String toString(int start, int end);       // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
    // --- Methods to support CharSequence ---
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     * Returns the length of this character buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     * <p> When viewed as a character sequence, the length of a character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     * buffer is simply the number of characters between the position
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     * (inclusive) and the limit (exclusive); that is, it is equivalent to
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1591
     * {@code remaining()}. </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     * @return  The length of this character buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
    public final int length() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
        return remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
     * Reads the character at the given index relative to the current
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
  1601
     * position.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     * @param  index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     *         The index of the character to be read, relative to the position;
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1605
     *         must be non-negative and smaller than {@code remaining()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
     * @return  The character at index
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1608
     *          <code>position()&nbsp;+&nbsp;index</code>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1611
     *          If the preconditions on {@code index} do not hold
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
    public final char charAt(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
        return get(position() + checkIndex(index, 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
     * Creates a new character buffer that represents the specified subsequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
     * of this buffer, relative to the current position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
     * <p> The new buffer will share this buffer's content; that is, if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
     * content of this buffer is mutable then modifications to one buffer will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
     * cause the other to be modified.  The new buffer's capacity will be that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     * of this buffer, its position will be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1625
     * {@code position()}&nbsp;+&nbsp;{@code start}, and its limit will be
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1626
     * {@code position()}&nbsp;+&nbsp;{@code end}.  The new buffer will be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     * direct if, and only if, this buffer is direct, and it will be read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     * if, and only if, this buffer is read-only.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     * @param  start
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
     *         The index, relative to the current position, of the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
     *         character in the subsequence; must be non-negative and no larger
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1633
     *         than {@code remaining()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
     * @param  end
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
     *         The index, relative to the current position, of the character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
     *         following the last character in the subsequence; must be no
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1638
     *         smaller than {@code start} and no larger than
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1639
     *         {@code remaining()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
     *
1224
8c1bc7c5dd00 6733145: (bf) CharBuffer.subSequence can be updated to take advantage of covariant returns
martin
parents: 2
diff changeset
  1641
     * @return  The new character buffer
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1644
     *          If the preconditions on {@code start} and {@code end}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
     *          do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
     */
1224
8c1bc7c5dd00 6733145: (bf) CharBuffer.subSequence can be updated to take advantage of covariant returns
martin
parents: 2
diff changeset
  1647
    public abstract CharBuffer subSequence(int start, int end);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
    // --- Methods to support Appendable ---
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
     * Appends the specified character sequence  to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
     * buffer&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1656
     * <p> An invocation of this method of the form {@code dst.append(csq)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
     *     dst.put(csq.toString()) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1662
     * <p> Depending on the specification of {@code toString} for the
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1663
     * character sequence {@code csq}, the entire sequence may not be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
     * appended.  For instance, invoking the {@link $Type$Buffer#toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
     * toString} method of a character buffer will return a subsequence whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
     * content depends upon the buffer's position and limit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * @param  csq
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1669
     *         The character sequence to append.  If {@code csq} is
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1670
     *         {@code null}, then the four characters {@code "null"} are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     *         appended to this character buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
    public $Type$Buffer append(CharSequence csq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
        if (csq == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
            return put("null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
            return put(csq.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
     * Appends a subsequence of the  specified character sequence  to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     * buffer&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1694
     * <p> An invocation of this method of the form {@code dst.append(csq, start,
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1695
     * end)} when {@code csq} is not {@code null}, behaves in exactly the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     * same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
     *     dst.put(csq.subSequence(start, end).toString()) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
     * @param  csq
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
     *         The character sequence from which a subsequence will be
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1703
     *         appended.  If {@code csq} is {@code null}, then characters
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1704
     *         will be appended as if {@code csq} contained the four
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1705
     *         characters {@code "null"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
     * @throws  IndexOutOfBoundsException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1713
     *          If {@code start} or {@code end} are negative, {@code start}
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1714
     *          is greater than {@code end}, or {@code end} is greater than
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1715
     *          {@code csq.length()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
    public $Type$Buffer append(CharSequence csq, int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
        CharSequence cs = (csq == null ? "null" : csq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
        return put(cs.subSequence(start, end).toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
    /**
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1728
     * Appends the specified $type$  to this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
     * buffer&nbsp;&nbsp;<i>(optional operation)</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1731
     * <p> An invocation of this method of the form {@code dst.append($x$)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
     *     dst.put($x$) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
     * @param  $x$
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1738
     *         The 16-bit $type$ to append
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
     * @throws  BufferOverflowException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
     *          If there is insufficient space in this buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
     * @throws  ReadOnlyBufferException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
     *          If this buffer is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
    public $Type$Buffer append($type$ $x$) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
        return put($x$);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
#end[char]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
    // -- Other byte stuff: Access to binary data --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
#if[!byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
     * Retrieves this buffer's byte order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
     *
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1764
     * <p> The byte order of $a$ $type$ buffer created by allocation or by
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 31873
diff changeset
  1765
     * wrapping an existing {@code $type$} array is the {@link
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
  1766
     * ByteOrder#nativeOrder native order} of the underlying
4502
18f387917b89 6903754: (bf) Improve floating-point buffer comparison
martin
parents: 4115
diff changeset
  1767
     * hardware.  The byte order of $a$ $type$ buffer created as a <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
     * href="ByteBuffer.html#views">view</a> of a byte buffer is that of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
     * byte buffer at the moment that the view is created.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
     * @return  This buffer's byte order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
    public abstract ByteOrder order();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
#end[!byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
48356
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1777
#if[char]
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1778
    // The order or null if the buffer does not cover a memory region,
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1779
    // such as StringCharBuffer
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1780
    abstract ByteOrder charRegionOrder();
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1781
#end[char]
29e165bdf669 8193085: Vectorize the nio Buffer equals and compareTo implementations
psandoz
parents: 47216
diff changeset
  1782
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
#if[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
    boolean bigEndian                                   // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
        = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
    boolean nativeByteOrder                             // package-private
49581
bd45ce23b1ac 8201494: Avoid early initialization of java.nio.Bits
redestad
parents: 49282
diff changeset
  1788
        = (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     * Retrieves this buffer's byte order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
     * <p> The byte order is used when reading or writing multibyte values, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
     * when creating buffers that are views of this byte buffer.  The order of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     * a newly-created byte buffer is always {@link ByteOrder#BIG_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     * BIG_ENDIAN}.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
     * @return  This buffer's byte order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
    public final ByteOrder order() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
        return bigEndian ? ByteOrder.BIG_ENDIAN : ByteOrder.LITTLE_ENDIAN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
    /**
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 18156
diff changeset
  1805
     * Modifies this buffer's byte order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
     * @param  bo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
     *         The new byte order,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
     *         either {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
     *         or {@link ByteOrder#LITTLE_ENDIAN LITTLE_ENDIAN}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
    public final $Type$Buffer order(ByteOrder bo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
        bigEndian = (bo == ByteOrder.BIG_ENDIAN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
        nativeByteOrder =
49581
bd45ce23b1ac 8201494: Avoid early initialization of java.nio.Bits
redestad
parents: 49282
diff changeset
  1817
            (bigEndian == (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
36933
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1821
    /**
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1822
     * Returns the memory address, pointing to the byte at the given index,
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1823
     * modulus the given unit size.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1824
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1825
     * <p> A return value greater than zero indicates the address of the byte at
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1826
     * the index is misaligned for the unit size, and the value's quantity
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1827
     * indicates how much the index should be rounded up or down to locate a
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1828
     * byte at an aligned address.  Otherwise, a value of {@code 0} indicates
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1829
     * that the address of the byte at the index is aligned for the unit size.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1830
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1831
     * @apiNote
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1832
     * This method may be utilized to determine if unit size bytes from an
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1833
     * index can be accessed atomically, if supported by the native platform.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1834
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1835
     * @implNote
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1836
     * This implementation throws {@code UnsupportedOperationException} for
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1837
     * non-direct buffers when the given unit size is greater then {@code 8}.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1838
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1839
     * @param  index
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1840
     *         The index to query for alignment offset, must be non-negative, no
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1841
     *         upper bounds check is performed
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1842
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1843
     * @param  unitSize
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1844
     *         The unit size in bytes, must be a power of {@code 2}
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1845
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1846
     * @return  The indexed byte's memory address modulus the unit size
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1847
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1848
     * @throws IllegalArgumentException
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1849
     *         If the index is negative or the unit size is not a power of
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1850
     *         {@code 2}
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1851
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1852
     * @throws UnsupportedOperationException
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1853
     *         If the native platform does not guarantee stable alignment offset
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1854
     *         values for the given unit size when managing the memory regions
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1855
     *         of buffers of the same kind as this buffer (direct or
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1856
     *         non-direct).  For example, if garbage collection would result
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1857
     *         in the moving of a memory region covered by a non-direct buffer
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1858
     *         from one location to another and both locations have different
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1859
     *         alignment characteristics.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1860
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1861
     * @see #alignedSlice(int)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1862
     * @since 9
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1863
     */
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1864
    public final int alignmentOffset(int index, int unitSize) {
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1865
        if (index < 0)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1866
            throw new IllegalArgumentException("Index less than zero: " + index);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1867
        if (unitSize < 1 || (unitSize & (unitSize - 1)) != 0)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1868
            throw new IllegalArgumentException("Unit size not a power of two: " + unitSize);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1869
        if (unitSize > 8 && !isDirect())
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1870
            throw new UnsupportedOperationException("Unit size unsupported for non-direct buffers: " + unitSize);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1871
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1872
        return (int) ((address + index) % unitSize);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1873
    }
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1874
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1875
    /**
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1876
     * Creates a new byte buffer whose content is a shared and aligned
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1877
     * subsequence of this buffer's content.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1878
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1879
     * <p> The content of the new buffer will start at this buffer's current
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1880
     * position rounded up to the index of the nearest aligned byte for the
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1881
     * given unit size, and end at this buffer's limit rounded down to the index
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1882
     * of the nearest aligned byte for the given unit size.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1883
     * If rounding results in out-of-bound values then the new buffer's capacity
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1884
     * and limit will be zero.  If rounding is within bounds the following
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1885
     * expressions will be true for a new buffer {@code nb} and unit size
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1886
     * {@code unitSize}:
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1887
     * <pre>{@code
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1888
     * nb.alignmentOffset(0, unitSize) == 0
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1889
     * nb.alignmentOffset(nb.limit(), unitSize) == 0
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1890
     * }</pre>
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1891
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1892
     * <p> Changes to this buffer's content will be visible in the new
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1893
     * buffer, and vice versa; the two buffers' position, limit, and mark
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1894
     * values will be independent.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1895
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1896
     * <p> The new buffer's position will be zero, its capacity and its limit
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1897
     * will be the number of bytes remaining in this buffer or fewer subject to
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1898
     * alignment, its mark will be undefined, and its byte order will be
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1899
     * {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN}.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1900
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1901
     * The new buffer will be direct if, and only if, this buffer is direct, and
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1902
     * it will be read-only if, and only if, this buffer is read-only.  </p>
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1903
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1904
     * @apiNote
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1905
     * This method may be utilized to create a new buffer where unit size bytes
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1906
     * from index, that is a multiple of the unit size, may be accessed
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1907
     * atomically, if supported by the native platform.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1908
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1909
     * @implNote
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1910
     * This implementation throws {@code UnsupportedOperationException} for
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1911
     * non-direct buffers when the given unit size is greater then {@code 8}.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1912
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1913
     * @param  unitSize
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1914
     *         The unit size in bytes, must be a power of {@code 2}
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1915
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1916
     * @return  The new byte buffer
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1917
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1918
     * @throws IllegalArgumentException
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1919
     *         If the unit size not a power of {@code 2}
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1920
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1921
     * @throws UnsupportedOperationException
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1922
     *         If the native platform does not guarantee stable aligned slices
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1923
     *         for the given unit size when managing the memory regions
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1924
     *         of buffers of the same kind as this buffer (direct or
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1925
     *         non-direct).  For example, if garbage collection would result
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1926
     *         in the moving of a memory region covered by a non-direct buffer
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1927
     *         from one location to another and both locations have different
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1928
     *         alignment characteristics.
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1929
     *
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1930
     * @see #alignmentOffset(int, int)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1931
     * @see #slice()
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1932
     * @since 9
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1933
     */
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1934
    public final ByteBuffer alignedSlice(int unitSize) {
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1935
        int pos = position();
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1936
        int lim = limit();
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1937
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1938
        int pos_mod = alignmentOffset(pos, unitSize);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1939
        int lim_mod = alignmentOffset(lim, unitSize);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1940
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1941
        // Round up the position to align with unit size
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1942
        int aligned_pos = (pos_mod > 0)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1943
            ? pos + (unitSize - pos_mod)
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1944
            : pos;
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1945
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1946
        // Round down the limit to align with unit size
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1947
        int aligned_lim = lim - lim_mod;
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1948
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1949
        if (aligned_pos > lim || aligned_lim < pos) {
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1950
            aligned_pos = aligned_lim = pos;
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1951
        }
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1952
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1953
        return slice(aligned_pos, aligned_lim);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1954
    }
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1955
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1956
    abstract ByteBuffer slice(int pos, int lim);
3e6453e2d833 8149469: ByteBuffer API and implementation enhancements for VarHandles
psandoz
parents: 35302
diff changeset
  1957
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
    // #BIN
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
    // Binary-data access methods  for short, char, int, long, float,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
    // and double will be inserted here
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
#end[byte]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
17922
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1965
#if[streamableType]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1966
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1967
#if[char]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1968
    @Override
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1969
#end[char]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1970
    public $Streamtype$Stream $type$s() {
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1971
        return StreamSupport.$streamtype$Stream(() -> new $Type$BufferSpliterator(this),
18822
4b6be7c19547 8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents: 18574
diff changeset
  1972
            Buffer.SPLITERATOR_CHARACTERISTICS, false);
17922
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1973
    }
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1974
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1975
#end[streamableType]
d56eec572de5 8014854: (bf) CharBuffer.chars too slow with default implementation
alanb
parents: 14342
diff changeset
  1976
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
}