public class Sequence extends ArrayList
Represents a sequence of zero or more objects of a given type. The type can be omitted in which case any type of object can be added.
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | void | add(int index, Object element) | 
|  | boolean | add(Object element) | 
|  | boolean | addAll(Collection c) | 
|  | boolean | addAll(int index, Collection c) | 
|  | protected void | checkCollectionType(Collection c)Checks that each member of the given collection are of the correct type | 
|  | protected void | checkType(Object object)Checks that the given object instance is of the correct type otherwise a runtime exception is thrown | 
|  | void | clear() | 
|  | boolean | equals(Object that) | 
|  | boolean | equals(Sequence that) | 
|  | MetaClass | getMetaClass() | 
|  | Object | getProperty(String property) | 
|  | int | hashCode() | 
|  | Object | invokeMethod(String name, Object args) | 
|  | int | minimumSize() | 
|  | Object | remove(int index) | 
|  | protected void | removeRange(int fromIndex, int toIndex) | 
|  | void | set(Collection collection)Sets the contents of this sequence to that of the given collection. | 
|  | Object | set(int index, Object element) | 
|  | void | setMetaClass(MetaClass metaClass) | 
|  | void | setProperty(String property, Object newValue) | 
|  | Class | type()@return the type of the elements in the sequence or null if there is no type constraint on this sequence | 
| Methods inherited from class | Name | 
|---|---|
| class ArrayList | add, add, remove, remove, get, equals, hashCode, clone, indexOf, clear, isEmpty, lastIndexOf, contains, replaceAll, size, subList, toArray, toArray, iterator, spliterator, addAll, addAll, set, forEach, ensureCapacity, trimToSize, retainAll, removeAll, removeIf, sort, listIterator, listIterator, toString, containsAll, wait, wait, wait, getClass, notify, notifyAll, toArray, stream, parallelStream | 
Checks that each member of the given collection are of the correct type
Checks that the given object instance is of the correct type otherwise a runtime exception is thrown
Sets the contents of this sequence to that of the given collection.
Copyright © 2003-2021 The Apache Software Foundation. All rights reserved.