Class Descriptor.Iterator

java.lang.Object
javassist.bytecode.Descriptor.Iterator
Enclosing class:
Descriptor

public static class Descriptor.Iterator extends Object
An Iterator over a descriptor.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private int
     
    private String
     
    private int
     
    private boolean
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs an iterator.
  • Method Summary

    Modifier and Type
    Method
    Description
    char
    Returns the first character of the current element.
    boolean
    Returns true if the iteration has more elements.
    boolean
    Returns true if the current element is double or long type.
    boolean
    Returns true if the current element is a parameter type.
    int
    Returns the position of the next type character.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • desc

      private String desc
    • index

      private int index
    • curPos

      private int curPos
    • param

      private boolean param
  • Constructor Details

    • Iterator

      public Iterator(String s)
      Constructs an iterator.
      Parameters:
      s - descriptor.
  • Method Details

    • hasNext

      public boolean hasNext()
      Returns true if the iteration has more elements.
    • isParameter

      public boolean isParameter()
      Returns true if the current element is a parameter type.
    • currentChar

      public char currentChar()
      Returns the first character of the current element.
    • is2byte

      public boolean is2byte()
      Returns true if the current element is double or long type.
    • next

      public int next()
      Returns the position of the next type character. That type character becomes a new current element.