org.apache.beehive.netui.tags.javascript
Enum CoreScriptFeature

Object
  extended by Enum<CoreScriptFeature>
      extended by CoreScriptFeature
All Implemented Interfaces:
Serializable, Comparable<CoreScriptFeature>

public enum CoreScriptFeature
extends Enum<CoreScriptFeature>


Enum Constant Summary
ALLOCATE_ID
           
ALLOCATE_LEGACY
           
ALLOCATE_NAME
           
ANCHOR_SUBMIT
           
BUTTON_DISABLE
           
BUTTON_DISABLE_AND_SUBMIT
           
DIVPANEL_INIT
           
DYNAMIC_INIT
           
ID_LOOKUP
           
LEGACY_LOOKUP
           
LEGACY_SCOPE_LOOKUP
           
NAME_LOOKUP
           
POPUP_DONE
           
ROLLOVER
           
SCOPE_LOOKUP
           
SET_FOCUS
           
TREE_INIT
           
 
Field Summary
 int value
           
 
Method Summary
static CoreScriptFeature valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CoreScriptFeature[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LEGACY_LOOKUP

public static final CoreScriptFeature LEGACY_LOOKUP

ID_LOOKUP

public static final CoreScriptFeature ID_LOOKUP

NAME_LOOKUP

public static final CoreScriptFeature NAME_LOOKUP

SCOPE_LOOKUP

public static final CoreScriptFeature SCOPE_LOOKUP

ROLLOVER

public static final CoreScriptFeature ROLLOVER

ANCHOR_SUBMIT

public static final CoreScriptFeature ANCHOR_SUBMIT

POPUP_DONE

public static final CoreScriptFeature POPUP_DONE

ALLOCATE_LEGACY

public static final CoreScriptFeature ALLOCATE_LEGACY

ALLOCATE_ID

public static final CoreScriptFeature ALLOCATE_ID

ALLOCATE_NAME

public static final CoreScriptFeature ALLOCATE_NAME

LEGACY_SCOPE_LOOKUP

public static final CoreScriptFeature LEGACY_SCOPE_LOOKUP

TREE_INIT

public static final CoreScriptFeature TREE_INIT

DIVPANEL_INIT

public static final CoreScriptFeature DIVPANEL_INIT

DYNAMIC_INIT

public static final CoreScriptFeature DYNAMIC_INIT

BUTTON_DISABLE_AND_SUBMIT

public static final CoreScriptFeature BUTTON_DISABLE_AND_SUBMIT

BUTTON_DISABLE

public static final CoreScriptFeature BUTTON_DISABLE

SET_FOCUS

public static final CoreScriptFeature SET_FOCUS
Field Detail

value

public int value
Method Detail

values

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

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

valueOf

public static CoreScriptFeature 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