Class AbstractScriptSearchProvider.MapIterator<K>

java.lang.Object
com.inductiveautomation.ignition.designer.scripteditor.AbstractScriptSearchProvider.MapIterator<K>
All Implemented Interfaces:
Iterator<SearchObject>
Enclosing class:
AbstractScriptSearchProvider<T>

protected abstract class AbstractScriptSearchProvider.MapIterator<K> extends Object implements Iterator<SearchObject>
  • Field Details

  • Constructor Details

    • MapIterator

      public MapIterator()
  • Method Details

    • getDisplayName

      protected abstract String getDisplayName()
    • getMap

      protected abstract Map<K,String> getMap()
    • setMap

      protected abstract void setMap(Map<K,String> value)
    • getNameForKey

      protected String getNameForKey(K key)
    • notifyModification

      protected void notifyModification()
    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<K>
    • next

      public SearchObject next()
      Specified by:
      next in interface Iterator<K>
    • remove

      public void remove()
      Specified by:
      remove in interface Iterator<K>