comparison src/org/eclipse/jetty/io/Buffer.java @ 1032:eca26899c4bc

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Nov 2016 03:19:50 -0600
parents 921c25a05eaa
children 3c4c7cc7904f
comparison
equal deleted inserted replaced
1031:921c25a05eaa 1032:eca26899c4bc
173 * @param index an <code>int</code> value 173 * @param index an <code>int</code> value
174 * @return a <code>byte</code> value 174 * @return a <code>byte</code> value
175 */ 175 */
176 byte peek(int index); 176 byte peek(int index);
177 177
178 /** 178 String toString(int index, int length);
179 *
180 * @param index an <code>int</code> value
181 * @param length an <code>int</code> value
182 * @return The <code>Buffer</code> value from the requested getIndex.
183 */
184 Buffer peek(int index, int length);
185 179
186 /** 180 /**
187 * 181 *
188 * @param index an <code>int</code> value 182 * @param index an <code>int</code> value
189 * @param b The byte array to peek into 183 * @param b The byte array to peek into