arrayOopDesc クラスの具象サブクラスの1つ.
このクラスは「primitive 型の配列」を表す (e.g. boolean[], byte[], char[], short[], int[], long[], float[], double[]).
((cite: hotspot/src/share/vm/oops/typeArrayOop.hpp))
// A typeArrayOop is an array containing basic types (non oop elements).
// It is used for arrays of {characters, singles, doubles, bytes, shorts, integers, longs}
...
class typeArrayOopDesc : public arrayOopDesc {
なお, 実際の使用箇所では typeArrayOop という別名(もしくはラッパークラス)で使われることが多い (See: typeArrayOop).
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.