Java org.objectweb.asm.tree.analysis BasicValue fields, constructors, methods, implement or subclass

Example usage for Java org.objectweb.asm.tree.analysis BasicValue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.objectweb.asm.tree.analysis BasicValue.

The text is from its open source code.

Subclass

org.objectweb.asm.tree.analysis.BasicValue has subclasses.
Click this link to see all its subclasses.

Field

BasicValueUNINITIALIZED_VALUE
An uninitialized value.
BasicValueINT_VALUE
A byte, boolean, char, short, or int value.
BasicValueFLOAT_VALUE
A float value.
BasicValueLONG_VALUE
A long value.
BasicValueDOUBLE_VALUE
A double value.
BasicValueREFERENCE_VALUE
An object or array reference value.
BasicValueRETURNADDRESS_VALUE
A return address value (produced by a jsr instruction).

Constructor

BasicValue(final Type type)
Constructs a new BasicValue of the given type.

Method

booleanequals(final Object value)
intgetSize()
TypegetType()
Returns the Type of this value.
booleanisReference()
Returns whether this value corresponds to an object or array reference.