Package com.jidesoft.plaf.windows
Enum TMSchema.Control
- java.lang.Object
-
- java.lang.Enum<TMSchema.Control>
-
- com.jidesoft.plaf.windows.TMSchema.Control
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TMSchema.Control>
- Enclosing class:
- TMSchema
public static enum TMSchema.Control extends java.lang.Enum<TMSchema.Control>
An enumeration of the various Windows controls (also known as components, or top-level parts)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TMSchema.Control
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TMSchema.Control[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUTTON
public static final TMSchema.Control BUTTON
-
COMBOBOX
public static final TMSchema.Control COMBOBOX
-
EDIT
public static final TMSchema.Control EDIT
-
HEADER
public static final TMSchema.Control HEADER
-
LISTBOX
public static final TMSchema.Control LISTBOX
-
LISTVIEW
public static final TMSchema.Control LISTVIEW
-
MENU
public static final TMSchema.Control MENU
-
PROGRESS
public static final TMSchema.Control PROGRESS
-
REBAR
public static final TMSchema.Control REBAR
-
SCROLLBAR
public static final TMSchema.Control SCROLLBAR
-
SPIN
public static final TMSchema.Control SPIN
-
TAB
public static final TMSchema.Control TAB
-
TOOLBAR
public static final TMSchema.Control TOOLBAR
-
TRACKBAR
public static final TMSchema.Control TRACKBAR
-
TREEVIEW
public static final TMSchema.Control TREEVIEW
-
WINDOW
public static final TMSchema.Control WINDOW
-
EXPLORERBAR
public static final TMSchema.Control EXPLORERBAR
-
-
Method Detail
-
values
public static TMSchema.Control[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TMSchema.Control c : TMSchema.Control.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TMSchema.Control valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-