All Superinterfaces: 
CapacityCarrying , Copyable , ExtendedCollection <E>, ExtendedSequence <E>, Iterable <E>, ReleasingCollection <E>, Sized , Sortable <E>, XGettingCollection <E>, XGettingSequence <E>, XIndexIterable <E>, XIterable <E>, XJoinable <E>, XOrderingSequence <E>, XSortableSequence <E> 
 
All Known Subinterfaces: 
XBasicTable.Values <K,V>, XChart.Values <K,V>, XDecreasingEnum <E>, XDecreasingList <E>, XDecreasingSequence <E>, XEnum <E>, XIncreasingList <E>, XList <E>, XReference <E>, XSettingEnum <E>, XSettingList <E>, XTable <K,V>, XTable.Keys <K,V>, XTable.Values <K,V> 
 
All Known Implementing Classes: 
ArrayAccessor , ArrayCollector , BulkList , EqBulkList , EqHashEnum , EqHashTable , EqHashTable.Keys , EqHashTable.Values , FixedList , HashEnum , HashTable , HashTable.Keys , HashTable.Values , LimitList , LinkReference.Default , ListAccessor , LockedList , Single , Singleton , SubList , SubListAccessor , SubListProcessor , SynchList  
 
 
public interface XSettingSequence<E> 
extends XSortableSequence <E>, ReleasingCollection <E> 
 
 
 
Method Summary 
All Methods Instance Methods Abstract Methods 
Modifier and Type 
Method 
Description 
 
 
XSettingSequence <E > 
copy  () 
Creates a true copy of this list which references th same elements in the same order as this list does
 at the time the method is called.
 
 
XSettingSequence <E > 
range  (long fromIndex,
long toIndex) 
  
 
XSettingSequence <E > 
reverse  () 
  
 
boolean 
set  (long index,
E  element) 
  
 
XSettingSequence <E > 
set  (long index,
E [] elements,
int offset,
int length) 
  
 
XSettingSequence <E > 
set  (long index,
XGettingSequence <? extends E > elements,
long offset,
long length) 
  
 
XSettingSequence <E > 
setAll  (long index,
E ... elements) 
  
 
void 
setFirst  (E  element) 
  
 
E  
setGet  (long index,
E  element) 
  
 
void 
setLast  (E  element) 
  
 
XSettingSequence <E > 
sort  (Comparator <? super E > comparator) 
  
 
XSettingSequence <E > 
swap  (long indexA,
long indexB) 
  
 
XSettingSequence <E > 
swap  (long indexA,
long indexB,
long length) 
  
 
XSettingSequence <E > 
toReversed  () 
  
 
 
 
 
Methods inherited from interface one.microstream.collections.interfaces.Sized  
 isEmpty  
Methods inherited from interface one.microstream.collections.types.XGettingCollection  
 applies , contains , containsAll , containsId , containsSearched , copyTo , count , countBy , distinct , distinct , equality , equals , equals , equalsContent , except , filterTo , hashCode , hasVolatileElements , intersect , intSize , iterator , join , max , min , nullContained , old , search , seek , size , toArray , toArray , union  
Methods inherited from interface one.microstream.collections.types.XGettingSequence  
 at , copySelection , first , get , hasIndex , immure , indexBy , indexOf , isSorted , last , lastIndexBy , lastIndexOf , maxIndex , minIndex , peek , poll , scan , view , view  
Methods inherited from interface one.microstream.collections.types.XIterable  
 iterate  
 
 
 
 
 
Method Details 
boolean  set (
long index,
E  element)  
 
 
E   setGet (
long index,
E  element)  
 
 
void  setFirst (
E  element) 
 
 
 
 
 
 
 
 
 
 
Creates a true copy of this list which references th same elements in the same order as this list does
 at the time the method is called. The elements themselves are NOT copied (no deep copying). 
 The type of the returned list is the same as of this list if possible (i.e.: a SubList can not meaningful
 return a true copy that references its elements but still is a SubList)
Specified by:  
copy  in interface Copyable  
Specified by:  
copy  in interface XGettingCollection <E > 
Specified by:  
copy  in interface XGettingSequence <E > 
Specified by:  
copy  in interface XSortableSequence <E > 
Returns:  
a copy of this list