s.java.util.Collection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
package s.java.util;
import i.IObject;
import i.IObjectArray;
import s.java.lang.Iterable;
public interface Collection extends Iterable{
// Query Operations
int avm_size();
boolean avm_isEmpty();
boolean avm_contains(IObject o);
IObjectArray avm_toArray();
boolean avm_add(E e);
boolean avm_remove(IObject o);
boolean avm_containsAll(Collection extends IObject> c);
boolean avm_addAll(Collection extends E> c);
boolean avm_removeAll(Collection extends IObject> c);
boolean avm_retainAll(Collection extends IObject> c);
void avm_clear();
boolean avm_equals(IObject o);
int avm_hashCode();
//Default
//Exclude
// T[] toArray(T[] a);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy