Home | History | Annotate | Download | only in util

Lines Matching defs:enumeration

27  * An <code>InternalTypeEnumeration</code> provides an enumeration of all
79 * Returns whether the enumeration can provide more types from the method
179 * A main method for testing the type enumeration.
190 InternalTypeEnumeration enumeration = new InternalTypeEnumeration(descriptor);
192 if (enumeration.firstIndex >= 0)
194 System.out.println(" Formal type parameters ["+enumeration.formalTypeParameters()+"]");
197 while (enumeration.hasMoreTypes())
199 System.out.println(" Type ["+enumeration.nextType()+"]");
202 if (enumeration.lastIndex < descriptor.length())
204 System.out.println(" Return type ["+enumeration.returnType()+"]");