Class CaseInsensitiveIntMap.Keys

java.lang.Object
com.github.tommyettinger.textra.utils.CaseInsensitiveIntMap.Keys
All Implemented Interfaces:
java.lang.Iterable<java.lang.String>, java.util.Iterator<java.lang.String>
Enclosing class:
CaseInsensitiveIntMap

public static class CaseInsensitiveIntMap.Keys
extends java.lang.Object
implements java.lang.Iterable<java.lang.String>, java.util.Iterator<java.lang.String>
  • Field Summary

    Fields
    Modifier and Type Field Description
    boolean hasNext  
  • Constructor Summary

    Constructors
    Constructor Description
    Keys​(CaseInsensitiveIntMap map)  
  • Method Summary

    Modifier and Type Method Description
    boolean hasNext()  
    CaseInsensitiveIntMap.Keys iterator()  
    java.lang.String next()  
    void remove()  
    void reset()  
    com.badlogic.gdx.utils.Array<java.lang.String> toArray()
    Returns a new array containing the remaining keys.
    com.badlogic.gdx.utils.Array<java.lang.String> toArray​(com.badlogic.gdx.utils.Array<java.lang.String> array)
    Adds the remaining keys to the array.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.lang.Iterable

    forEach, spliterator

    Methods inherited from interface java.util.Iterator

    forEachRemaining, remove
  • Field Details

    • hasNext

      public boolean hasNext
  • Constructor Details

  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface java.util.Iterator<java.lang.String>
    • next

      public java.lang.String next()
      Specified by:
      next in interface java.util.Iterator<java.lang.String>
    • iterator

      public CaseInsensitiveIntMap.Keys iterator()
      Specified by:
      iterator in interface java.lang.Iterable<java.lang.String>
    • toArray

      public com.badlogic.gdx.utils.Array<java.lang.String> toArray()
      Returns a new array containing the remaining keys.
    • toArray

      public com.badlogic.gdx.utils.Array<java.lang.String> toArray​(com.badlogic.gdx.utils.Array<java.lang.String> array)
      Adds the remaining keys to the array.
    • reset

      public void reset()
    • remove

      public void remove()