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