Package com.esri.arcgisruntime.mapping
Class Surface.ElevationSourceList
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.Surface.ElevationSourceList
-
- All Implemented Interfaces:
ListenableList<ElevationSource>
,Iterable<ElevationSource>
,Collection<ElevationSource>
,List<ElevationSource>
- Enclosing class:
- Surface
public static final class Surface.ElevationSourceList extends Object implements ListenableList<ElevationSource>
Represents the list of ElevationSources in a Surface.This class is not creatable but elevation sources can be added and removed. Changes to the list can be observed by adding a ListChangedListener.
If the elevation sources in the list are rendered in a SceneView, changes to the list will have an immediate effect on how elevation is rendered in that SceneView. If an elevation source is removed from the list it will disappear from the SceneView and vice versa if an elevation source is added to the list it will change the elevation rendering of the SceneView.
- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
- See Also:
ListenableList
,ElevationSource
-
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
-
-
-
Method Detail
-
addListChangedListener
public void addListChangedListener(ListChangedListener<ElevationSource> listener)
Description copied from interface:ListenableList
Adds a listener for added and removed events.Adding this listener on the UI thread will cause it to be invoked on the UI thread, otherwise it is not guaranteed on which thread the listener is invoked.
- Specified by:
addListChangedListener
in interfaceListenableList<ElevationSource>
- Parameters:
listener
- this listener will be called back when items are added to or removed from the list
-
removeListChangedListener
public boolean removeListChangedListener(ListChangedListener<ElevationSource> listener)
Description copied from interface:ListenableList
Removes the given listener from this class instance. It will no longer receive added or removed events.- Specified by:
removeListChangedListener
in interfaceListenableList<ElevationSource>
- Parameters:
listener
- listener to remove- Returns:
- true if the listenable list contained the given listener, false otherwise
-
size
public int size()
- Specified by:
size
in interfaceCollection<ElevationSource>
- Specified by:
size
in interfaceList<ElevationSource>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceCollection<ElevationSource>
- Specified by:
isEmpty
in interfaceList<ElevationSource>
-
contains
public boolean contains(Object o)
- Specified by:
contains
in interfaceCollection<ElevationSource>
- Specified by:
contains
in interfaceList<ElevationSource>
-
iterator
public Iterator<ElevationSource> iterator()
- Specified by:
iterator
in interfaceCollection<ElevationSource>
- Specified by:
iterator
in interfaceIterable<ElevationSource>
- Specified by:
iterator
in interfaceList<ElevationSource>
-
toArray
public Object[] toArray()
- Specified by:
toArray
in interfaceCollection<ElevationSource>
- Specified by:
toArray
in interfaceList<ElevationSource>
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interfaceCollection<ElevationSource>
- Specified by:
toArray
in interfaceList<ElevationSource>
-
add
public boolean add(ElevationSource elevationSource)
- Specified by:
add
in interfaceCollection<ElevationSource>
- Specified by:
add
in interfaceList<ElevationSource>
-
remove
public boolean remove(Object o)
- Specified by:
remove
in interfaceCollection<ElevationSource>
- Specified by:
remove
in interfaceList<ElevationSource>
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll
in interfaceCollection<ElevationSource>
- Specified by:
containsAll
in interfaceList<ElevationSource>
-
addAll
public boolean addAll(Collection<? extends ElevationSource> c)
- Specified by:
addAll
in interfaceCollection<ElevationSource>
- Specified by:
addAll
in interfaceList<ElevationSource>
-
addAll
public boolean addAll(int index, Collection<? extends ElevationSource> c)
- Specified by:
addAll
in interfaceList<ElevationSource>
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll
in interfaceCollection<ElevationSource>
- Specified by:
removeAll
in interfaceList<ElevationSource>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll
in interfaceCollection<ElevationSource>
- Specified by:
retainAll
in interfaceList<ElevationSource>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<ElevationSource>
- Specified by:
clear
in interfaceList<ElevationSource>
-
get
public ElevationSource get(int index)
- Specified by:
get
in interfaceList<ElevationSource>
-
set
public ElevationSource set(int index, ElevationSource element)
- Specified by:
set
in interfaceList<ElevationSource>
-
add
public void add(int index, ElevationSource element)
- Specified by:
add
in interfaceList<ElevationSource>
-
remove
public ElevationSource remove(int index)
- Specified by:
remove
in interfaceList<ElevationSource>
-
indexOf
public int indexOf(Object o)
- Specified by:
indexOf
in interfaceList<ElevationSource>
-
lastIndexOf
public int lastIndexOf(Object o)
- Specified by:
lastIndexOf
in interfaceList<ElevationSource>
-
listIterator
public ListIterator<ElevationSource> listIterator()
- Specified by:
listIterator
in interfaceList<ElevationSource>
-
listIterator
public ListIterator<ElevationSource> listIterator(int index)
- Specified by:
listIterator
in interfaceList<ElevationSource>
-
subList
public List<ElevationSource> subList(int fromIndex, int toIndex)
- Specified by:
subList
in interfaceList<ElevationSource>
-
-