16
16
17
17
import static com .google .common .base .Preconditions .checkNotNull ;
18
18
19
- import com .google .common .annotations .Beta ;
20
19
import com .google .common .annotations .GwtCompatible ;
21
20
import com .google .common .annotations .GwtIncompatible ;
22
21
import com .google .common .base .Function ;
@@ -163,7 +162,6 @@ public Iterator<E> iterator() {
163
162
*
164
163
* @since 20.0 (since 18.0 as an overload of {@code of})
165
164
*/
166
- @ Beta
167
165
public static <E extends @ Nullable Object > FluentIterable <E > from (E [] elements ) {
168
166
return from (Arrays .asList (elements ));
169
167
}
@@ -196,7 +194,6 @@ public Iterator<E> iterator() {
196
194
*
197
195
* @since 20.0
198
196
*/
199
- @ Beta
200
197
public static <T extends @ Nullable Object > FluentIterable <T > concat (
201
198
Iterable <? extends T > a , Iterable <? extends T > b ) {
202
199
return concatNoDefensiveCopy (a , b );
@@ -215,7 +212,6 @@ public Iterator<E> iterator() {
215
212
*
216
213
* @since 20.0
217
214
*/
218
- @ Beta
219
215
public static <T extends @ Nullable Object > FluentIterable <T > concat (
220
216
Iterable <? extends T > a , Iterable <? extends T > b , Iterable <? extends T > c ) {
221
217
return concatNoDefensiveCopy (a , b , c );
@@ -235,7 +231,6 @@ public Iterator<E> iterator() {
235
231
*
236
232
* @since 20.0
237
233
*/
238
- @ Beta
239
234
public static <T extends @ Nullable Object > FluentIterable <T > concat (
240
235
Iterable <? extends T > a ,
241
236
Iterable <? extends T > b ,
@@ -259,7 +254,6 @@ public Iterator<E> iterator() {
259
254
* @throws NullPointerException if any of the provided iterables is {@code null}
260
255
* @since 20.0
261
256
*/
262
- @ Beta
263
257
public static <T extends @ Nullable Object > FluentIterable <T > concat (
264
258
Iterable <? extends T >... inputs ) {
265
259
return concatNoDefensiveCopy (Arrays .copyOf (inputs , inputs .length ));
@@ -279,7 +273,6 @@ public Iterator<E> iterator() {
279
273
*
280
274
* @since 20.0
281
275
*/
282
- @ Beta
283
276
public static <T extends @ Nullable Object > FluentIterable <T > concat (
284
277
final Iterable <? extends Iterable <? extends T >> inputs ) {
285
278
checkNotNull (inputs );
@@ -319,7 +312,6 @@ public Iterator<? extends T> get(int i) {
319
312
*
320
313
* @since 20.0
321
314
*/
322
- @ Beta
323
315
public static <E extends @ Nullable Object > FluentIterable <E > of () {
324
316
return FluentIterable .from (Collections .<E >emptyList ());
325
317
}
@@ -332,7 +324,6 @@ public Iterator<? extends T> get(int i) {
332
324
*
333
325
* @since 20.0
334
326
*/
335
- @ Beta
336
327
public static <E extends @ Nullable Object > FluentIterable <E > of (
337
328
@ ParametricNullness E element , E ... elements ) {
338
329
return from (Lists .asList (element , elements ));
@@ -401,7 +392,6 @@ public final FluentIterable<E> cycle() {
401
392
*
402
393
* @since 18.0
403
394
*/
404
- @ Beta
405
395
public final FluentIterable <E > append (Iterable <? extends E > other ) {
406
396
return FluentIterable .concat (getDelegate (), other );
407
397
}
@@ -414,7 +404,6 @@ public final FluentIterable<E> append(Iterable<? extends E> other) {
414
404
*
415
405
* @since 18.0
416
406
*/
417
- @ Beta
418
407
public final FluentIterable <E > append (E ... elements ) {
419
408
return FluentIterable .concat (getDelegate (), Arrays .asList (elements ));
420
409
}
@@ -835,7 +824,6 @@ public final <C extends Collection<? super E>> C copyInto(C collection) {
835
824
*
836
825
* @since 18.0
837
826
*/
838
- @ Beta
839
827
public final String join (Joiner joiner ) {
840
828
return joiner .join (this );
841
829
}
0 commit comments