Package groovy.lang
Class Sequence
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
groovy.lang.Sequence
- All Implemented Interfaces:
- GroovyObject,- Serializable,- Cloneable,- Iterable,- Collection,- List,- RandomAccess
- Direct Known Subclasses:
- NonEmptySequence
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.
- See Also:
- 
Field SummaryFields inherited from class java.util.AbstractListmodCount
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidbooleanbooleanaddAll(int index, Collection c) booleanaddAll(Collection c) protected voidChecks that each member of the given collection are of the correct typeprotected voidChecks that the given object instance is of the correct type otherwise a runtime exception is thrownvoidclear()booleanbooleanReturns the metaclass for a given class.getProperty(String property) Retrieves a property value.inthashCode()invokeMethod(String name, Object args) Invokes the given method.intremove(int index) protected voidremoveRange(int fromIndex, int toIndex) voidset(Collection collection) Sets the contents of this sequence to that of the given collection.voidsetMetaClass(MetaClass metaClass) Allows the MetaClass to be replaced with a derived implementation.voidsetProperty(String property, Object newValue) Sets the given property to the new value.type()Methods inherited from class java.util.ArrayListclone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, removeAll, removeIf, replaceAll, retainAll, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class java.util.AbstractCollectioncontainsAll, toStringMethods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.CollectionparallelStream, stream, toArrayMethods inherited from interface java.util.ListcontainsAll
- 
Constructor Details- 
Sequencepublic Sequence()
- 
Sequence
- 
Sequence
 
- 
- 
Method Details- 
setSets the contents of this sequence to that of the given collection.
- 
equals
- 
equals
- 
hashCodepublic int hashCode()
- 
minimumSizepublic int minimumSize()
- 
type- Returns:
- the type of the elements in the sequence or null if there is no type constraint on this sequence
 
- 
add
- 
add
- 
addAll
- 
addAll
- 
clearpublic void clear()
- 
remove
- 
removeRangeprotected void removeRange(int fromIndex, int toIndex) - Overrides:
- removeRangein class- ArrayList
 
- 
set
- 
invokeMethodDescription copied from interface:GroovyObjectInvokes the given method.- Specified by:
- invokeMethodin interface- GroovyObject
- Parameters:
- name- the name of the method to call
- args- the arguments to use for the method call
- Returns:
- the result of invoking the method
 
- 
getPropertyDescription copied from interface:GroovyObjectRetrieves a property value.- Specified by:
- getPropertyin interface- GroovyObject
- Parameters:
- property- the name of the property of interest
- Returns:
- the given property
 
- 
setPropertyDescription copied from interface:GroovyObjectSets the given property to the new value.- Specified by:
- setPropertyin interface- GroovyObject
- Parameters:
- property- the name of the property of interest
- newValue- the new value for the property
 
- 
getMetaClassDescription copied from interface:GroovyObjectReturns the metaclass for a given class.- Specified by:
- getMetaClassin interface- GroovyObject
- Returns:
- the metaClass of this instance
 
- 
setMetaClassDescription copied from interface:GroovyObjectAllows the MetaClass to be replaced with a derived implementation.- Specified by:
- setMetaClassin interface- GroovyObject
- Parameters:
- metaClass- the new metaclass
 
- 
checkCollectionTypeChecks that each member of the given collection are of the correct type
- 
checkTypeChecks that the given object instance is of the correct type otherwise a runtime exception is thrown
 
-