Mercurial Hosting > luan
comparison src/org/eclipse/jetty/io/Buffer.java @ 1029:4e5e9e3c25b3
remove Buffer.equalsIgnoreCase()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 03 Nov 2016 00:55:20 -0600 |
parents | 6d17a257b03f |
children | 80cad9086593 |
comparison
equal
deleted
inserted
replaced
1028:2ea54e6117c3 | 1029:4e5e9e3c25b3 |
---|---|
132 */ | 132 */ |
133 boolean hasContent(); | 133 boolean hasContent(); |
134 | 134 |
135 /** | 135 /** |
136 * | 136 * |
137 * @return a <code>boolean</code> value true if case sensitive comparison on this buffer | |
138 */ | |
139 boolean equalsIgnoreCase(Buffer buffer); | |
140 | |
141 | |
142 /** | |
143 * | |
144 * @return a <code>boolean</code> value true if the buffer is immutable and that neither | 137 * @return a <code>boolean</code> value true if the buffer is immutable and that neither |
145 * the buffer contents nor the indexes may be changed. | 138 * the buffer contents nor the indexes may be changed. |
146 */ | 139 */ |
147 boolean isImmutable(); | 140 boolean isImmutable(); |
148 | 141 |