类 TracingValue
- java.lang.Object
-
- proguard.evaluation.value.Value
-
- proguard.evaluation.value.TracingValue
-
public class TracingValue extends Value
Representation of a value that has been tagged with a sticky trace value.
-
-
字段概要
-
从类继承的字段 proguard.evaluation.value.Value
ALWAYS, MAYBE, NEVER, TYPE_DOUBLE, TYPE_FLOAT, TYPE_INSTRUCTION_OFFSET, TYPE_INTEGER, TYPE_LONG, TYPE_REFERENCE, TYPE_TOP, TYPE_UNKNOWN
-
-
构造器概要
构造器 构造器 说明 TracingValue(Value traceValue, Value value)Creates a new TracingValue with the given trace value and value.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Category1Valuecategory1Value()Returns this Value as a Category1Value.Category2Valuecategory2Value()Returns this Value as a Category2Value.intcomputationalType()Returns the computational type of this Value.DoubleValuedoubleValue()Returns this Value as a DoubleValue.booleanequals(java.lang.Object object)FloatValuefloatValue()Returns this Value as a FloatValue.TracingValuegeneralize(TracingValue other)Returns the generalization of this TracingValue and the given other TracingValue.Valuegeneralize(Value other)Returns the generalization of this Value and the given other Value.inthashCode()InstructionOffsetValueinstructionOffsetValue()Returns this Value as an InstructionOffsetValue.IntegerValueintegerValue()Returns this Value as an IntegerValue.java.lang.StringinternalType()Returns the internal type of this Value.booleanisCategory2()Returns whether the computational type of this Value is a category 2 type.booleanisParticular()Returns whether this Value represents a single particular (known) value.booleanisSpecific()Returns whether this Value represents a single specific (but possibly unknown) value.LongValuelongValue()Returns this Value as a LongValue.ReferenceValuereferenceValue()Returns this Value as a ReferenceValue.java.lang.StringtoString()-
从类继承的方法 proguard.evaluation.value.Value
copyIfMutable
-
-
-
-
方法详细资料
-
generalize
public final TracingValue generalize(TracingValue other)
Returns the generalization of this TracingValue and the given other TracingValue.
-
category1Value
public Category1Value category1Value()
从类复制的说明:ValueReturns this Value as a Category1Value.- 覆盖:
category1Value在类中Value
-
category2Value
public Category2Value category2Value()
从类复制的说明:ValueReturns this Value as a Category2Value.- 覆盖:
category2Value在类中Value
-
integerValue
public IntegerValue integerValue()
从类复制的说明:ValueReturns this Value as an IntegerValue.- 覆盖:
integerValue在类中Value
-
floatValue
public FloatValue floatValue()
从类复制的说明:ValueReturns this Value as a FloatValue.- 覆盖:
floatValue在类中Value
-
doubleValue
public DoubleValue doubleValue()
从类复制的说明:ValueReturns this Value as a DoubleValue.- 覆盖:
doubleValue在类中Value
-
referenceValue
public ReferenceValue referenceValue()
从类复制的说明:ValueReturns this Value as a ReferenceValue.- 覆盖:
referenceValue在类中Value
-
instructionOffsetValue
public final InstructionOffsetValue instructionOffsetValue()
从类复制的说明:ValueReturns this Value as an InstructionOffsetValue.- 覆盖:
instructionOffsetValue在类中Value
-
isSpecific
public boolean isSpecific()
从类复制的说明:ValueReturns whether this Value represents a single specific (but possibly unknown) value.- 覆盖:
isSpecific在类中Value
-
isParticular
public boolean isParticular()
从类复制的说明:ValueReturns whether this Value represents a single particular (known) value.- 覆盖:
isParticular在类中Value
-
generalize
public final Value generalize(Value other)
从类复制的说明:ValueReturns the generalization of this Value and the given other Value.- 指定者:
generalize在类中Value
-
isCategory2
public boolean isCategory2()
从类复制的说明:ValueReturns whether the computational type of this Value is a category 2 type. This means that it takes up the space of two category 1 types on the stack, for instance.- 指定者:
isCategory2在类中Value
-
computationalType
public final int computationalType()
从类复制的说明:ValueReturns the computational type of this Value.- 指定者:
computationalType在类中Value- 返回:
TYPE_INTEGER,TYPE_LONG,TYPE_FLOAT,TYPE_DOUBLE,TYPE_REFERENCE, orTYPE_INSTRUCTION_OFFSET.
-
internalType
public final java.lang.String internalType()
从类复制的说明:ValueReturns the internal type of this Value.- 指定者:
internalType在类中Value- 返回:
TypeConstants.BOOLEAN,TypeConstants.BYTE,TypeConstants.CHAR,TypeConstants.SHORT,TypeConstants.INT,TypeConstants.LONG,TypeConstants.FLOAT,TypeConstants.DOUBLE,TypeConstants.CLASS_START ... TypeConstants.CLASS_END, or an array type containing any of these types (always as String).
-
equals
public boolean equals(java.lang.Object object)
- 覆盖:
equals在类中java.lang.Object
-
hashCode
public int hashCode()
- 覆盖:
hashCode在类中java.lang.Object
-
toString
public java.lang.String toString()
- 覆盖:
toString在类中java.lang.Object
-
-