Package org.geotools.data.oracle.sdo
Class OrdinateList
- Object
- 
- AbstractCollection<E>
- 
- AbstractList
- 
- OrdinateList
 
 
 
- 
- All Implemented Interfaces:
- Iterable,- Collection,- List
 
 public class OrdinateList extends AbstractList Used to provide a List API of an ordinate array.Insertions are not supported - Author:
- jgarnett, Refractions Reasearch Inc.
- See Also:
- net.refractions.jspatial.jts
 
- 
- 
Field Summary- 
Fields inherited from class AbstractListmodCount
 
- 
 - 
Constructor SummaryConstructors Constructor Description OrdinateList(double[] array)OrdinateList(double[] array, int offset, int len)OrdinateList(double[] array, int offset, int len, int start, int end)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectget(int index)Used to grab value from array.doublegetDouble(int index)Quick double accessintsize()Used todouble[]toDoubleArray()- 
Methods inherited from class AbstractListadd, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
 - 
Methods inherited from class AbstractCollectionaddAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
 - 
Methods inherited from interface CollectionparallelStream, removeIf, stream, toArray
 - 
Methods inherited from interface ListaddAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, sort, spliterator, toArray, toArray
 
- 
 
- 
- 
- 
Method Detail- 
getpublic Object get(int index) Used to grab value from array.Description of get. - Specified by:
- getin interface- List
- Specified by:
- getin class- AbstractList
- See Also:
- List.get(int)
 
 - 
getDoublepublic double getDouble(int index) Quick double access
 - 
toDoubleArraypublic double[] toDoubleArray() 
 - 
sizepublic int size() Used toDescription of size. - Specified by:
- sizein interface- Collection
- Specified by:
- sizein interface- List
- Specified by:
- sizein class- AbstractCollection
- See Also:
- Collection.size()
 
 
- 
 
-