# Enum: com.pnfsoftware.jeb.core.units.code.android.EffectiveFinalityType

Define the effective finality of a Dex field.

## Constant: ALMOST_FINAL
Description: Written once outside the constructor or written multiple times to a value determined to be the same.

## Constant: FINAL
Description: Explicitly final \(has the final keyword\) or effectively final \(does not have the final keyword, initialized only once in the constructor\), and does not appear to be modified by reflection.

## Constant: NON_FINAL
Description: Non\-final, i.e. written multiple times to potentially different values.

## Constant: UNKNOWN
Description: The effective finality is unknown.

## Method: isFinalLike
- return type: `boolean`

Description: Determine if this value behaves like a final field.
return: true for final\-like values

## Static Method: valueOf
- parameter: `name`, type: `java.lang.String`
- return type: `com.pnfsoftware.jeb.core.units.code.android.EffectiveFinalityType`


## Static Method: values
- return type: `com.pnfsoftware.jeb.core.units.code.android.EffectiveFinalityType[]`


