org.jboss.drools.guvnor.importgenerator
Enum CmdArgsParser.Parameters

java.lang.Object
  extended by java.lang.Enum<CmdArgsParser.Parameters>
      extended by org.jboss.drools.guvnor.importgenerator.CmdArgsParser.Parameters
All Implemented Interfaces:
Serializable, Comparable<CmdArgsParser.Parameters>
Enclosing class:
CmdArgsParser

public static enum CmdArgsParser.Parameters
extends Enum<CmdArgsParser.Parameters>


Enum Constant Summary
OPTIONS_BASE_DIR
           
OPTIONS_CREATOR
           
OPTIONS_EXTENSIONS
           
OPTIONS_FUNCTIONS_FILE
           
OPTIONS_KAGENT_CHANGE_SET_FILE
           
OPTIONS_KAGENT_CHANGE_SET_SERVER
           
OPTIONS_OUTPUT_FILE
           
OPTIONS_PACKAGE_EXCLUDE
           
OPTIONS_PACKAGE_START
           
OPTIONS_PATH
           
OPTIONS_RECURSIVE
           
OPTIONS_SNAPSHOT_NAME
           
OPTIONS_VERBOSE
           
OPTIONS_VERY_VERBOSE
           
 
Method Summary
static CmdArgsParser.Parameters valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CmdArgsParser.Parameters[] 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

OPTIONS_PATH

public static final CmdArgsParser.Parameters OPTIONS_PATH

OPTIONS_PACKAGE_START

public static final CmdArgsParser.Parameters OPTIONS_PACKAGE_START

OPTIONS_PACKAGE_EXCLUDE

public static final CmdArgsParser.Parameters OPTIONS_PACKAGE_EXCLUDE

OPTIONS_RECURSIVE

public static final CmdArgsParser.Parameters OPTIONS_RECURSIVE

OPTIONS_CREATOR

public static final CmdArgsParser.Parameters OPTIONS_CREATOR

OPTIONS_EXTENSIONS

public static final CmdArgsParser.Parameters OPTIONS_EXTENSIONS

OPTIONS_OUTPUT_FILE

public static final CmdArgsParser.Parameters OPTIONS_OUTPUT_FILE

OPTIONS_SNAPSHOT_NAME

public static final CmdArgsParser.Parameters OPTIONS_SNAPSHOT_NAME

OPTIONS_FUNCTIONS_FILE

public static final CmdArgsParser.Parameters OPTIONS_FUNCTIONS_FILE

OPTIONS_KAGENT_CHANGE_SET_SERVER

public static final CmdArgsParser.Parameters OPTIONS_KAGENT_CHANGE_SET_SERVER

OPTIONS_KAGENT_CHANGE_SET_FILE

public static final CmdArgsParser.Parameters OPTIONS_KAGENT_CHANGE_SET_FILE

OPTIONS_BASE_DIR

public static final CmdArgsParser.Parameters OPTIONS_BASE_DIR

OPTIONS_VERBOSE

public static final CmdArgsParser.Parameters OPTIONS_VERBOSE

OPTIONS_VERY_VERBOSE

public static final CmdArgsParser.Parameters OPTIONS_VERY_VERBOSE
Method Detail

values

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

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

valueOf

public static CmdArgsParser.Parameters 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


Copyright © 2001-2012 JBoss by Red Hat. All Rights Reserved.