com.raelity.jvi
Enum Options.Category

java.lang.Object
  extended by java.lang.Enum<Options.Category>
      extended by com.raelity.jvi.Options.Category
All Implemented Interfaces:
Serializable, Comparable<Options.Category>
Enclosing class:
Options

public static enum Options.Category
extends Enum<Options.Category>


Enum Constant Summary
CURSOR_WRAP
           
DEBUG
           
GENERAL
           
MODIFY
           
PLATFORM
           
PROCESS
           
SEARCH
           
 
Method Summary
static Options.Category valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Options.Category[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PLATFORM

public static final Options.Category PLATFORM

GENERAL

public static final Options.Category GENERAL

MODIFY

public static final Options.Category MODIFY

SEARCH

public static final Options.Category SEARCH

CURSOR_WRAP

public static final Options.Category CURSOR_WRAP

PROCESS

public static final Options.Category PROCESS

DEBUG

public static final Options.Category DEBUG
Method Detail

values

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

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

valueOf

public static Options.Category 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