Java List Replace replaceAllInList(T a, T b, List list)

Here you can find the source of replaceAllInList(T a, T b, List list)

Description

replace All In List

License

Open Source License

Declaration

public static <T> boolean replaceAllInList(T a, T b, List<T> list) 

Method Source Code


//package com.java2s;
/*/*from   w  ww  .ja va2s .co m*/
 * Copyright (c) 2017, APT Group, School of Computer Science,
 * The University of Manchester. All rights reserved.
 * Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 */

import java.util.*;

public class Main {
    public static <T> boolean replaceAllInList(T a, T b, List<T> list) {
        final int max = list.size();
        for (int i = 0; i < max; i++) {
            if (list.get(i) == a) {
                list.set(i, b);
            }
        }
        return false;
    }
}

Related

  1. replace(List list, char target, char replacement)
  2. replace(List list, T from, T to)
  3. replace(String s, List replacementVars)
  4. replace(String sourceStr, List indexList, String replaceStr)
  5. replaceAll(final List list, final T element0, final T element1)
  6. replaceAndAdd(List par3List, String translateToLocal)
  7. replaceAtSymbol(String s, List params)
  8. replaceColons(List unstructuredSentences)
  9. replaceFields(Map mapFields, String changeStr, List listString)