# Class: com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstant

A code constant object is a literal with a name and a fixed value.

## Constructor: CodeConstant
- parameter: `name`, type: `java.lang.String`
- parameter: `value`, type: `java.lang.Object`

Description: Create a code constant.
parameter: name: constant name
parameter: value: constant value

## Method: equals
- parameter: `obj`, type: `java.lang.Object`
- return type: `boolean`


## Method: getName
- return type: `java.lang.String`

Description: Get the constant name.
return: constant name

## Method: getValue
- return type: `java.lang.Object`

Description: Get the constant value.
return: constant value

## Method: hashCode
- return type: `int`


## Method: toString
- return type: `java.lang.String`


