# Class: com.pnfsoftware.jeb.core.actions.Actions

This class defines well\-known actions.

## Constructor: Actions


## Static Field: AUTO_RENAME_ALL
Type: `int`

Constant value: `14`
Description: Auto\-rename all identifiers.

## Static Field: COLLAPSE
Type: `int`

Constant value: `17`
Description: Request to mark an item as collapsed \(rendering should be hidden\) or expanded \(normal rendering, not hidden\).

## Static Field: COMMENT
Type: `int`

Constant value: `3`
Description: Create a comment.

## Static Field: CONVERT
Type: `int`

Constant value: `5`
Description: Perform a conversion.

## Static Field: CREATE_PACKAGE
Type: `int`

Constant value: `10`
Description: Code specific: Create a package.

## Static Field: DELETE
Type: `int`

Constant value: `1`
Description: Delete action.

## Static Field: MOVE_TO
Type: `int`

Constant value: `16`
Description: Move a source item "to" another \(destination\) item. A generic version of [#MOVE_TO_PACKAGE](#MOVE_TO_PACKAGE).

## Static Field: MOVE_TO_PACKAGE
Type: `int`

Constant value: `11`
Description: Code specific: Move code items to a package. 

 This action has been superseded by [#MOVE_TO](#MOVE_TO); it is left here for legacy reasons. Parsers implementing it should maintain support to avoid breaking extensions \(scripts/plugins\) relying on it.

## Static Field: NOOP
Type: `int`

Constant value: `0`
Description: No operation.

## Static Field: PROVIDE_TYPE_HINT
Type: `int`

Constant value: `15`
Description: Code specific: Provide a type hint for a code item.

## Static Field: QUERY_OVERRIDES
Type: `int`

Constant value: `13`
Description: Code specific: Query code overrides.

## Static Field: QUERY_TYPE_HIER
Type: `int`

Constant value: `12`
Description: Code specific: Query types hierarchies.

## Static Field: QUERY_XREFS
Type: `int`

Constant value: `4`
Description: Query cross\-references.

## Static Field: RENAME
Type: `int`

Constant value: `2`
Description: Rename an item.

## Static Field: REPLACE
Type: `int`

Constant value: `6`
Description: Perform a replacement.

## Static Method: idToName
- parameter: `id`, type: `int`
- return type: `java.lang.String`

Description: Convert an action to a human\-readable, camel\-case name.
parameter: id: the action id
return: the action name, or `UnknownAction{id}` on error

