change list element Java code example
Example 1: modify element in list java
list.set( 2, "New" );
Example 2: java list change element position
Collections.swap(List<?> list, int i, int j)
list.set( 2, "New" );
Collections.swap(List<?> list, int i, int j)