Searched defs:Enumeration (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DEnumeration.java29 * An object that implements the Enumeration interface generates a
36 * for (Enumeration<E> e = v.elements(); e.hasMoreElements();)
47 * Iterator in preference to Enumeration.
51 * @see java.util.Enumeration#nextElement()
61 public interface Enumeration<E> { interface
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest6868189.java43 PropertyDescriptor[] pds = Introspector.getBeanInfo(Enumeration.class).getPropertyDescriptors();
49 public enum Enumeration { enum in class:Test6868189
58 new PropertyDescriptor(PROPERTY, Enumeration.class, GETTER, SETTER)
/openjdk7/jdk/test/java/beans/PropertyEditor/6380849/
H A DTestPropertyEditor.java55 private enum Enumeration { enum in class:TestPropertyEditor
106 test(Enumeration.class, EnumEditor.class);
133 test(Enumeration.class, EnumEditor.class);
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java766 * Returns an Enumeration that will return the ranges of characters
769 public Enumeration getChars() {
770 return new Enumeration(this);
774 // CharSet.Enumeration
778 * An Enumeration that can be used to extract the character ranges
781 public class Enumeration implements java.util.Enumeration { class in class:CharSet
783 * Initializes a CharSet.Enumeration
785 Enumeration(CharSet cs) { method in class:CharSet.Enumeration

Completed in 71 milliseconds