Java android.support.v4.util CircularIntArray fields, constructors, methods, implement or subclass

Example usage for Java android.support.v4.util CircularIntArray fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.support.v4.util CircularIntArray.

The text is from its open source code.

Constructor

CircularIntArray()
Creates a circular array with default capacity.

Method

voidaddLast(int e)
Add an integer at end of the CircularIntArray.
intget(int n)
Get nth (0 <= n <= size()-1) integer of the CircularIntArray.
intgetLast()
Get last integer of the CircularIntArray.
intpopLast()
Remove last integer from end of the CircularIntArray and return it.
intsize()
Get number of integers in the CircularIntArray.