ProGuard

proguard.classfile.util
Class InternalTypeEnumeration

java.lang.Object
  extended byproguard.classfile.util.InternalTypeEnumeration

public class InternalTypeEnumeration
extends Object

An InternalTypeEnumeration provides an enumeration of all types listed in a given internal descriptor string. The return type can retrieved separately.

A InternalTypeEnumeration object can be reused for processing different subsequent descriptors, by means of the setDescriptor method.


Constructor Summary
InternalTypeEnumeration()
           
InternalTypeEnumeration(String descriptor)
           
 
Method Summary
 boolean hasMoreTypes()
           
 String nextType()
           
 void reset()
           
 String returnType()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InternalTypeEnumeration

public InternalTypeEnumeration(String descriptor)

InternalTypeEnumeration

public InternalTypeEnumeration()
Method Detail

reset

public void reset()

hasMoreTypes

public boolean hasMoreTypes()

nextType

public String nextType()

returnType

public String returnType()

ProGuard