jebl.gui.trees.treeviewer
Enum TreeViewer.SearchType
java.lang.Object
   java.lang.Enum<TreeViewer.SearchType>
java.lang.Enum<TreeViewer.SearchType>
       jebl.gui.trees.treeviewer.TreeViewer.SearchType
jebl.gui.trees.treeviewer.TreeViewer.SearchType
- All Implemented Interfaces: 
- Serializable, Comparable<TreeViewer.SearchType>
- Enclosing class:
- TreeViewer
- public static enum TreeViewer.SearchType 
- extends Enum<TreeViewer.SearchType>
 
 
 
 
CONTAINS
public static final TreeViewer.SearchType CONTAINS
STARTS_WITH
public static final TreeViewer.SearchType STARTS_WITH
ENDS_WITH
public static final TreeViewer.SearchType ENDS_WITH
MATCHES
public static final TreeViewer.SearchType MATCHES
values
public static final TreeViewer.SearchType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared.  This method may be used to iterate
over the constants as follows:
for(TreeViewer.SearchType c : TreeViewer.SearchType.values())
        System.out.println(c);
 
- 
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
 
valueOf
public static TreeViewer.SearchType 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
 
toString
public String toString()
- 
- Overrides:
- toStringin class- Enum<TreeViewer.SearchType>
 
-