public static enum Gooey.Match extends java.lang.Enum<Gooey.Match>
Gooey.getLabel(java.awt.Container, java.lang.String), Gooey.getButton(java.awt.Container, java.lang.String),
Gooey.getMenu(javax.swing.JMenuBar, java.lang.String)) the default is by text. When omitted in retrieval of generic components
(e.g., Gooey.getComponent(java.awt.Container, java.lang.Class<T>) the default is by name.| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Gooey.Match |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Gooey.Match[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gooey.Match BY_NAME
public static final Gooey.Match BY_LABEL
public static Gooey.Match[] values()
for (Gooey.Match c : Gooey.Match.values()) System.out.println(c);
public static Gooey.Match valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Gooey.Match>