Package org.apache.bcel.verifier.statics
Class IntList
java.lang.Object
org.apache.bcel.verifier.statics.IntList
A small utility class representing a set of basic int values.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
list
The int are stored as Integer objects here.
-
-
Constructor Details
-
IntList
IntList()This constructor creates an empty list.
-
-
Method Details
-
add
void add(int i) Adds an element to the list. -
contains
boolean contains(int i) Checks if the specified int is already in the list.
-