ProGuard

proguard.classfile.util
Class ExternalTypeEnumeration

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

public class ExternalTypeEnumeration
extends Object

An ExternalTypeEnumeration provides an enumeration of all types listed in a given external descriptor string. The method name can be retrieved separately.

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


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

Constructor Detail

ExternalTypeEnumeration

public ExternalTypeEnumeration(String descriptor)
Method Detail

reset

public void reset()

hasMoreTypes

public boolean hasMoreTypes()

nextType

public String nextType()

methodName

public String methodName()

ProGuard