JIDE 3.5.15

com.jidesoft.plaf.windows
Enum TMSchema.Control

java.lang.Object
  extended by java.lang.Enum<TMSchema.Control>
      extended by com.jidesoft.plaf.windows.TMSchema.Control
All Implemented Interfaces:
Serializable, Comparable<TMSchema.Control>
Enclosing class:
TMSchema

public static enum TMSchema.Control
extends Enum<TMSchema.Control>

An enumeration of the various Windows controls (also known as components, or top-level parts)


Enum Constant Summary
BUTTON
           
COMBOBOX
           
EDIT
           
EXPLORERBAR
           
HEADER
           
LISTBOX
           
LISTVIEW
           
MENU
           
PROGRESS
           
REBAR
           
SCROLLBAR
           
SPIN
           
TAB
           
TOOLBAR
           
TRACKBAR
           
TREEVIEW
           
WINDOW
           
 
Method Summary
static TMSchema.Control valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

JIDE 3.5.15