public final enum

ChainType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType

Class Overview

Type of data flow analysis chain.

Summary

Enum Values
ChainType  DU  def-use (Defined-Use) chain: a register was defined; list the location where it is used. 
ChainType  UD  use-def (Used-Define) chain: a register is used; list the locations where it was defined. 
Public Methods
static ChainType valueOf(String name)
final static ChainType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ChainType DU

def-use (Defined-Use) chain: a register was defined; list the location where it is used.

public static final ChainType UD

use-def (Used-Define) chain: a register is used; list the locations where it was defined.

Public Methods

public static ChainType valueOf (String name)

public static final ChainType[] values ()