Method clone()
Return type:
java.lang.Object
Member of:
java.util.ArrayList
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return (List)myNodes.clone();
2
return ((java.util.List)((ArrayList)children).clone()).iterator();
3
return (ArrayList) otherProperties.clone();
4
return (List) schedulerListeners.clone();
5
return (List) ((ArrayList) allModels).clone();
6
return (List) i_joinTables.clone();
7
final Collection collection = (Collection) _cookies.clone();
8
ArrayList list =(ArrayList)listeners.clone();
9
list = (ArrayList) listeners.clone();
10
ArrayList arraylist1 = (ArrayList) list.clone();
11
List old = Collections.unmodifiableList((List)fStore.clone());
12
l = (ArrayList)(tableModelListeners.clone());
13
return (Collection) dataStore.clone();
14
TreeSet set = new TreeSet((List) generatedKeys.clone());
15
java.util.ArrayList newList = (ArrayList) model.getStringNonIndexedProperty().clone();
16
ArrayList temp = (ArrayList) list.clone();
17
ArrayList temp = (ArrayList) list.clone();
18
tm.setAllTypes((ArrayList) allTypes.clone());
19
ArrayList propList = (ArrayList) ((ArrayList) model.getDataList()).clone();
20
ArrayList newRoleValue = (ArrayList)oldRoleValue.clone();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.