Method clone()
Return type:
java.lang.Object
Member of:
java.lang.Object
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return (Locator)clone();
2
return (SourceInfo)super.clone();
3
private int errorMode[] = (int[]) defaultErrorMode.clone();
4
return (CodeException)clone();
5
return (String[]) columnNames.clone();
6
return (LocalVariable[])mParameters.clone();
7
errorMode = (int[]) defaultErrorMode.clone();
8
return ((String[])repositories.clone());
9
return (String[])__ids.clone ();
10
return (int[]) columnMappings.clone();
11
shuttlesort((int[])marrayRowMappedIndexes.clone(), marrayRowMappedIndexes, 0, marrayRowMappedIndexes.length);
12
value = (char[])value.clone();
13
JCClass[] allClasses = (JCClass[])getAllClassesByName().clone();
14
return (MimeType) clone();
15
shuttlesort((int[])indexes.clone(), indexes, 0, indexes.length);
16
return (BigDecimal[]) myBody.clone();
17
return (String []) bundleNames.clone();
18
return (DTDElement) clone();
19
return (String[])(RECOGNIZED_FEATURES.clone());
20
shuttlesort( (int[]) indexes.clone(), indexes, 0, indexes.length );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.