public enum TdbKernelWindowType extends java.lang.Enum<TdbKernelWindowType>
Enum Constant and Description |
---|
Display
Results from Display orders
Applications should use TdbTermList and TdbTermTree to intercept Display results for easier application handling. |
Expand
Results from expanding a focus selection
|
History
The user's search history
Applications should use TdbHistoryDetail objects created by the TdbCclCommand processor instead of this kernel window. |
PrintLocal
Contains the results of Print Local orders
|
Show
Results from a show or show focus order
|
SysInfo
System information window, contains results from orders such as STatus,
FREQuency, MEASure, etc.
|
Undefined
Not a valid window type
|
Modifier and Type | Method and Description |
---|---|
static TdbKernelWindowType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbKernelWindowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbKernelWindowType Undefined
public static final TdbKernelWindowType Show
public static final TdbKernelWindowType Expand
public static final TdbKernelWindowType Display
public static final TdbKernelWindowType History
public static final TdbKernelWindowType SysInfo
public static final TdbKernelWindowType PrintLocal
public static TdbKernelWindowType[] values()
for (TdbKernelWindowType c : TdbKernelWindowType.values()) System.out.println(c);
public static TdbKernelWindowType 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 null