net.sf.rej.gui.tab
Enum Tab

java.lang.Object
  extended by java.lang.Enum<Tab>
      extended by net.sf.rej.gui.tab.Tab
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Tab>

public enum Tab
extends java.lang.Enum<Tab>


Enum Constant Summary
COMPARE
           
CONSTANTPOOL
           
DEBUG
           
EDITOR
           
FILES
           
HEX
           
INJECTION
           
OBFUSCATION
           
SEARCH
           
STRUCTURE
           
 
Method Summary
static Tab valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Tab[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FILES

public static final Tab FILES

STRUCTURE

public static final Tab STRUCTURE

CONSTANTPOOL

public static final Tab CONSTANTPOOL

EDITOR

public static final Tab EDITOR

INJECTION

public static final Tab INJECTION

OBFUSCATION

public static final Tab OBFUSCATION

SEARCH

public static final Tab SEARCH

DEBUG

public static final Tab DEBUG

COMPARE

public static final Tab COMPARE

HEX

public static final Tab HEX
Method Detail

values

public static final Tab[] 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(Tab c : Tab.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Tab 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 name