ProGuard

proguard.optimize.evaluation.value
Class InstructionOffsetValueFactory

java.lang.Object
  extended byproguard.optimize.evaluation.value.InstructionOffsetValueFactory

public class InstructionOffsetValueFactory
extends Object

This class provides methods to create and reuse InstructionOffsetValue objects.


Constructor Summary
InstructionOffsetValueFactory()
           
 
Method Summary
static InstructionOffsetValue create()
          Creates a new InstructionOffsetValue without a value.
static InstructionOffsetValue create(int value)
          Creates a new InstructionOffsetValue with a given specific value.
static InstructionOffsetValue create(int[] values)
          Creates a new InstructionOffsetValue with a given list of possible values.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InstructionOffsetValueFactory

public InstructionOffsetValueFactory()
Method Detail

create

public static InstructionOffsetValue create()
Creates a new InstructionOffsetValue without a value.


create

public static InstructionOffsetValue create(int value)
Creates a new InstructionOffsetValue with a given specific value.


create

public static InstructionOffsetValue create(int[] values)
Creates a new InstructionOffsetValue with a given list of possible values.


ProGuard