Class NativeInt16Array
- java.lang.Object
-
- org.mozilla.javascript.ScriptableObject
-
- org.mozilla.javascript.IdScriptableObject
-
- org.mozilla.javascript.typedarrays.NativeArrayBufferView
-
- org.mozilla.javascript.typedarrays.NativeTypedArrayView<java.lang.Short>
-
- org.mozilla.javascript.typedarrays.NativeInt16Array
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<java.lang.Short>
,java.util.Collection<java.lang.Short>
,java.util.List<java.lang.Short>
,java.util.RandomAccess
,ConstProperties
,DebuggableObject
,ExternalArrayData
,IdFunctionCall
,Scriptable
,SymbolScriptable
public class NativeInt16Array extends NativeTypedArrayView<java.lang.Short>
An array view that stores 16-bit quantities and implements the JavaScript "Int16Array" interface. It also implements List<Short> for direct manipulation in Java.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.mozilla.javascript.ScriptableObject
ScriptableObject.KeyComparator
-
-
Field Summary
-
Fields inherited from class org.mozilla.javascript.typedarrays.NativeTypedArrayView
length, MAX_PROTOTYPE_ID
-
Fields inherited from class org.mozilla.javascript.typedarrays.NativeArrayBufferView
arrayBuffer, byteLength, offset
-
Fields inherited from class org.mozilla.javascript.ScriptableObject
CONST, DONTENUM, EMPTY, PERMANENT, READONLY, UNINITIALIZED_CONST
-
Fields inherited from interface org.mozilla.javascript.Scriptable
NOT_FOUND
-
-
Constructor Summary
Constructors Constructor Description NativeInt16Array()
NativeInt16Array(int len)
NativeInt16Array(NativeArrayBuffer ab, int off, int len)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected NativeInt16Array
construct(NativeArrayBuffer ab, int off, int len)
java.lang.Short
get(int i)
int
getBytesPerElement()
Return the number of bytes represented by each element in the array.java.lang.String
getClassName()
Return the name of the class.static void
init(Context cx, Scriptable scope, boolean sealed)
protected java.lang.Object
js_get(int index)
protected java.lang.Object
js_set(int index, java.lang.Object c)
protected NativeInt16Array
realThis(Scriptable thisObj, IdFunctionObject f)
java.lang.Short
set(int i, java.lang.Short aByte)
-
Methods inherited from class org.mozilla.javascript.typedarrays.NativeTypedArrayView
add, add, addAll, addAll, checkIndex, clear, contains, containsAll, delete, equals, execIdCall, fillConstructorProperties, findInstanceIdInfo, findPrototypeId, findPrototypeId, get, getArrayElement, getArrayLength, getIds, getInstanceIdName, getInstanceIdValue, getMaxInstanceId, has, hashCode, indexOf, initPrototypeId, isEmpty, iterator, lastIndexOf, listIterator, listIterator, put, remove, remove, removeAll, retainAll, setArrayElement, size, subList, toArray, toArray
-
Methods inherited from class org.mozilla.javascript.typedarrays.NativeArrayBufferView
getBuffer, getByteLength, getByteOffset, isArg, useLittleEndian
-
Methods inherited from class org.mozilla.javascript.IdScriptableObject
activatePrototypeMap, addIdFunctionProperty, defaultGet, defaultHas, defaultPut, defineOwnProperty, delete, delete, ensureType, exportAsJSClass, findInstanceIdInfo, get, get, getAttributes, getAttributes, getOwnPropertyDescriptor, has, has, hasPrototypeMap, initPrototypeConstructor, initPrototypeMethod, initPrototypeMethod, initPrototypeMethod, initPrototypeValue, initPrototypeValue, instanceIdInfo, put, put, setAttributes, setInstanceIdAttributes, setInstanceIdValue
-
Methods inherited from class org.mozilla.javascript.ScriptableObject
applyDescriptorToAttributeBitset, associateValue, avoidObjectDetection, buildDataDescriptor, callMethod, callMethod, checkPropertyChange, checkPropertyDefinition, defineClass, defineClass, defineClass, defineConst, defineConstProperty, defineFunctionProperties, defineOwnProperties, defineOwnProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, deleteProperty, deleteProperty, ensureScriptable, ensureScriptableObject, ensureSymbolScriptable, equivalentValues, get, getAllIds, getArrayPrototype, getAssociatedValue, getAttributes, getAttributes, getAttributes, getClassPrototype, getDefaultValue, getDefaultValue, getExternalArrayData, getExternalArrayLength, getFunctionPrototype, getGeneratorFunctionPrototype, getGetterOrSetter, getGetterOrSetter, getObjectPrototype, getParentScope, getProperty, getProperty, getProperty, getPropertyIds, getPrototype, getTopLevelScope, getTopScopeValue, getTypedProperty, getTypedProperty, getTypeOf, hasInstance, hasProperty, hasProperty, hasProperty, isAccessorDescriptor, isConst, isDataDescriptor, isExtensible, isFalse, isGenericDescriptor, isGetterOrSetter, isSealed, isTrue, preventExtensions, putConst, putConstProperty, putProperty, putProperty, putProperty, querySlot, redefineProperty, sameValue, sealObject, setAttributes, setAttributes, setAttributes, setAttributes, setCommonDescriptorProperties, setExternalArrayData, setGetterOrSetter, setParentScope, setPrototype
-
-
-
-
Constructor Detail
-
NativeInt16Array
public NativeInt16Array()
-
NativeInt16Array
public NativeInt16Array(NativeArrayBuffer ab, int off, int len)
-
NativeInt16Array
public NativeInt16Array(int len)
-
-
Method Detail
-
getClassName
public java.lang.String getClassName()
Description copied from class:ScriptableObject
Return the name of the class.This is typically the same name as the constructor. Classes extending ScriptableObject must implement this abstract method.
- Specified by:
getClassName
in interfaceScriptable
- Specified by:
getClassName
in classScriptableObject
-
init
public static void init(Context cx, Scriptable scope, boolean sealed)
-
construct
protected NativeInt16Array construct(NativeArrayBuffer ab, int off, int len)
- Specified by:
construct
in classNativeTypedArrayView<java.lang.Short>
-
getBytesPerElement
public int getBytesPerElement()
Description copied from class:NativeTypedArrayView
Return the number of bytes represented by each element in the array. This can be useful when wishing to manipulate the byte array directly from Java.- Specified by:
getBytesPerElement
in classNativeTypedArrayView<java.lang.Short>
-
realThis
protected NativeInt16Array realThis(Scriptable thisObj, IdFunctionObject f)
- Specified by:
realThis
in classNativeTypedArrayView<java.lang.Short>
-
js_get
protected java.lang.Object js_get(int index)
- Specified by:
js_get
in classNativeTypedArrayView<java.lang.Short>
-
js_set
protected java.lang.Object js_set(int index, java.lang.Object c)
- Specified by:
js_set
in classNativeTypedArrayView<java.lang.Short>
-
get
public java.lang.Short get(int i)
-
set
public java.lang.Short set(int i, java.lang.Short aByte)
-
-