Package org.apache.bcel.verifier.statics
Class IntList
- java.lang.Object
-
- org.apache.bcel.verifier.statics.IntList
-
public class IntList extends java.lang.Object
A small utility class representing a set of basic int values.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<java.lang.Integer>
theList
The int are stored as Integer objects here.
-
Constructor Summary
Constructors Constructor Description IntList()
This constructor creates an empty list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) void
add(int i)
Adds an element to the list.(package private) boolean
contains(int i)
Checks if the specified int is already in the list.
-