public final enum

AutoLabelPolicy

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy

Class Overview

Label retrieval policy used ILabelManager, specifically getLabel().

Summary

Enum Values
AutoLabelPolicy  ITEM  If no label exists, provide a label if an item exists at the requested address. 
AutoLabelPolicy  OFF  Provide a label only if there is one. 
AutoLabelPolicy  ON  If no label exists, provide an auto-generated label (always). 
Public Methods
static AutoLabelPolicy valueOf(String name)
final static AutoLabelPolicy[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final AutoLabelPolicy ITEM

If no label exists, provide a label if an item exists at the requested address.

public static final AutoLabelPolicy OFF

Provide a label only if there is one.

public static final AutoLabelPolicy ON

If no label exists, provide an auto-generated label (always).

Public Methods

public static AutoLabelPolicy valueOf (String name)

public static final AutoLabelPolicy[] values ()