public abstract class PrimitiveVector extends Object
double
, float
,
integer
, and long
primitives.
A newly constructed PrimitiveVector
begins with an
underlying storage array of 10 elements (the size may be overridden
by using the appropriate constructor). Whenever its space is
exhausted, the underlying array will grow by a factor of 2 the next
time an element is added. The underlying array may grow by at most
50,000 when it expands.
Modifier and Type | Class and Description |
---|---|
static class |
PrimitiveVector.Double |
static class |
PrimitiveVector.Float |
static class |
PrimitiveVector.Integer |
static class |
PrimitiveVector.Long |
Constructor and Description |
---|
PrimitiveVector() |
Copyright © 2013 Metron, Inc.. All rights reserved.