Package com.esri.arcgisruntime.mapping
Class Surface.ElevationSourceList
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.Surface.ElevationSourceList
-
- All Implemented Interfaces:
ListenableList<ElevationSource>
,java.lang.Iterable<ElevationSource>
,java.util.Collection<ElevationSource>
,java.util.List<ElevationSource>
- Enclosing class:
- Surface
public static final class Surface.ElevationSourceList extends java.lang.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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, ElevationSource element)
boolean
add(ElevationSource elevationSource)
boolean
addAll(int index, java.util.Collection<? extends ElevationSource> c)
boolean
addAll(java.util.Collection<? extends ElevationSource> c)
void
addListChangedListener(ListChangedListener<ElevationSource> listener)
Adds a listener for added and removed events.void
clear()
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection<?> c)
ElevationSource
get(int index)
int
indexOf(java.lang.Object o)
boolean
isEmpty()
java.util.Iterator<ElevationSource>
iterator()
int
lastIndexOf(java.lang.Object o)
java.util.ListIterator<ElevationSource>
listIterator()
java.util.ListIterator<ElevationSource>
listIterator(int index)
ElevationSource
remove(int index)
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
boolean
removeListChangedListener(ListChangedListener<ElevationSource> listener)
Removes the given listener from this class instance.boolean
retainAll(java.util.Collection<?> c)
ElevationSource
set(int index, ElevationSource element)
int
size()
java.util.List<ElevationSource>
subList(int fromIndex, int toIndex)
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] a)
-
-
-
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 interfacejava.util.Collection<ElevationSource>
- Specified by:
size
in interfacejava.util.List<ElevationSource>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfacejava.util.Collection<ElevationSource>
- Specified by:
isEmpty
in interfacejava.util.List<ElevationSource>
-
contains
public boolean contains(java.lang.Object o)
- Specified by:
contains
in interfacejava.util.Collection<ElevationSource>
- Specified by:
contains
in interfacejava.util.List<ElevationSource>
-
iterator
public java.util.Iterator<ElevationSource> iterator()
- Specified by:
iterator
in interfacejava.util.Collection<ElevationSource>
- Specified by:
iterator
in interfacejava.lang.Iterable<ElevationSource>
- Specified by:
iterator
in interfacejava.util.List<ElevationSource>
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray
in interfacejava.util.Collection<ElevationSource>
- Specified by:
toArray
in interfacejava.util.List<ElevationSource>
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interfacejava.util.Collection<ElevationSource>
- Specified by:
toArray
in interfacejava.util.List<ElevationSource>
-
add
public boolean add(ElevationSource elevationSource)
- Specified by:
add
in interfacejava.util.Collection<ElevationSource>
- Specified by:
add
in interfacejava.util.List<ElevationSource>
-
remove
public boolean remove(java.lang.Object o)
- Specified by:
remove
in interfacejava.util.Collection<ElevationSource>
- Specified by:
remove
in interfacejava.util.List<ElevationSource>
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
- Specified by:
containsAll
in interfacejava.util.Collection<ElevationSource>
- Specified by:
containsAll
in interfacejava.util.List<ElevationSource>
-
addAll
public boolean addAll(java.util.Collection<? extends ElevationSource> c)
- Specified by:
addAll
in interfacejava.util.Collection<ElevationSource>
- Specified by:
addAll
in interfacejava.util.List<ElevationSource>
-
addAll
public boolean addAll(int index, java.util.Collection<? extends ElevationSource> c)
- Specified by:
addAll
in interfacejava.util.List<ElevationSource>
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAll
in interfacejava.util.Collection<ElevationSource>
- Specified by:
removeAll
in interfacejava.util.List<ElevationSource>
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAll
in interfacejava.util.Collection<ElevationSource>
- Specified by:
retainAll
in interfacejava.util.List<ElevationSource>
-
clear
public void clear()
- Specified by:
clear
in interfacejava.util.Collection<ElevationSource>
- Specified by:
clear
in interfacejava.util.List<ElevationSource>
-
get
public ElevationSource get(int index)
- Specified by:
get
in interfacejava.util.List<ElevationSource>
-
set
public ElevationSource set(int index, ElevationSource element)
- Specified by:
set
in interfacejava.util.List<ElevationSource>
-
add
public void add(int index, ElevationSource element)
- Specified by:
add
in interfacejava.util.List<ElevationSource>
-
remove
public ElevationSource remove(int index)
- Specified by:
remove
in interfacejava.util.List<ElevationSource>
-
indexOf
public int indexOf(java.lang.Object o)
- Specified by:
indexOf
in interfacejava.util.List<ElevationSource>
-
lastIndexOf
public int lastIndexOf(java.lang.Object o)
- Specified by:
lastIndexOf
in interfacejava.util.List<ElevationSource>
-
listIterator
public java.util.ListIterator<ElevationSource> listIterator()
- Specified by:
listIterator
in interfacejava.util.List<ElevationSource>
-
listIterator
public java.util.ListIterator<ElevationSource> listIterator(int index)
- Specified by:
listIterator
in interfacejava.util.List<ElevationSource>
-
subList
public java.util.List<ElevationSource> subList(int fromIndex, int toIndex)
- Specified by:
subList
in interfacejava.util.List<ElevationSource>
-
-