Method size()
Return type: int
Member of:
java.util.Collection
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
this((ConcreteMarker[])markers.toArray(new ConcreteMarker[markers.size()]));
2
return createMarkers((IMarker[])ofIMarker.toArray(new IMarker[ofIMarker.size()]));
3
return super.IsModified() || (FeatureDifferences().size() != 0);
4
return new Integer(Values().size());
5
this(Math.max((int) (c.size()*1.1) + 1, 16));
6
inner = new HashMap(c.size()*2+1);
7
return (String[])c.toArray(new String[c.size()]);
8
ArrayList arraylist = new ArrayList(collection.size());
9
if (c.size() == 1) return str;
10
Convertor[] temp = new Convertor[c.size()];
11
JavaClass[] classes = new JavaClass[values.size()];
12
if (listeners.size() == 0) listeners = null;
13
fireIntervalAdded(this, index, (index + c.size() - 1));
14
String[] result = new String[names.size()];
15
super(gens.size());
16
ensureCapacity(size() + collection.size());
17
return (Variable[])vars.toArray(new Variable[vars.size()]);
18
return (c.size() != 0);
19
for (int i = 0; i < confirmed.size(); i++) {
20
return (this.size() > 0 && this.size() < otherSet.size() && this.subsetOf(otherSet));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.