Class NativeTypedArrayView<T>
java.lang.Object
org.mozilla.javascript.ScriptableObject
org.mozilla.javascript.typedarrays.NativeArrayBufferView
org.mozilla.javascript.typedarrays.NativeTypedArrayView<T>
- All Implemented Interfaces:
Serializable
,Iterable<T>
,Collection<T>
,List<T>
,RandomAccess
,SequencedCollection<T>
,ConstProperties
,DebuggableObject
,ExternalArrayData
,Scriptable
,SymbolScriptable
- Direct Known Subclasses:
NativeFloat32Array
,NativeFloat64Array
,NativeInt16Array
,NativeInt32Array
,NativeInt8Array
,NativeUint16Array
,NativeUint32Array
,NativeUint8Array
,NativeUint8ClampedArray
public abstract class NativeTypedArrayView<T>
extends NativeArrayBufferView
implements List<T>, RandomAccess, ExternalArrayData
This class is the abstract parent for all of the various typed arrays. Each one shows a view of a
specific NativeArrayBuffer, and modifications here will affect the rest.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static interface
protected static interface
Nested classes/interfaces inherited from class org.mozilla.javascript.ScriptableObject
ScriptableObject.KeyComparator
-
Field Summary
Modifier and TypeFieldDescriptionprotected final int
The length, in elements, of the arrayFields 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
ModifierConstructorDescriptionprotected
protected
NativeTypedArrayView
(NativeArrayBuffer ab, int off, int len, int byteLen) -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll
(int i, Collection<? extends T> bytes) boolean
addAll
(Collection<? extends T> bytes) protected boolean
checkIndex
(int index) void
clear()
boolean
boolean
containsAll
(Collection<?> objects) void
delete
(int index) Removes the indexed property from the object.void
Removes a named property from the object.boolean
get
(int index, Scriptable start) Returns the value of the indexed property or NOT_FOUND.get
(String name, Scriptable start) Returns the value of the named property or NOT_FOUND.getArrayElement
(int index) Return the element at the specified index.int
Return the length of the array.abstract int
Return the number of bytes represented by each element in the array.Object[]
getIds()
Returns an array of ids for the properties of the object.boolean
has
(int index, Scriptable start) Returns true if the property index is defined.boolean
has
(String name, Scriptable start) Returns true if the named property is defined.int
hashCode()
int
boolean
isEmpty()
iterator()
protected static NativeTypedArrayView
<?> js_constructor
(Context cx, Scriptable scope, Object[] args, NativeTypedArrayView.TypedArrayConstructable constructable, int bytesPerElement) protected abstract Object
js_get
(int index) protected abstract Object
int
listIterator
(int start) void
put
(int index, Scriptable start, Object val) Sets the value of the indexed property, creating it if need be.void
put
(String name, Scriptable start, Object val) Sets the value of the named property, creating it if need be.remove
(int i) boolean
boolean
removeAll
(Collection<?> objects) boolean
retainAll
(Collection<?> objects) void
setArrayElement
(int index, Object value) Set the element at the specified index.int
size()
subList
(int i, int i2) Object[]
toArray()
<U> U[]
toArray
(U[] ts) Methods inherited from class org.mozilla.javascript.typedarrays.NativeArrayBufferView
get, getBuffer, getByteLength, getByteOffset, isArg, useLittleEndian
Methods inherited from class org.mozilla.javascript.ScriptableObject
applyDescriptorToAttributeBitset, associateValue, avoidObjectDetection, buildDataDescriptor, callMethod, callMethod, checkPropertyChange, checkPropertyDefinition, defineClass, defineClass, defineClass, defineConst, defineConstProperty, defineFunctionProperties, defineOwnProperties, defineOwnProperty, defineOwnProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, delete, deleteProperty, deleteProperty, ensureScriptable, ensureScriptableObject, ensureSymbolScriptable, equivalentValues, get, getAllIds, getArrayPrototype, getAssociatedValue, getAttributes, getAttributes, getAttributes, getAttributes, getAttributes, getClassName, getClassPrototype, getDefaultValue, getDefaultValue, getExternalArrayData, getExternalArrayLength, getFunctionPrototype, getGeneratorFunctionPrototype, getGetterOrSetter, getGetterOrSetter, getObjectPrototype, getOwnPropertyDescriptor, getParentScope, getProperty, getProperty, getProperty, getPropertyIds, getPrototype, getTopLevelScope, getTopScopeValue, getTypedProperty, getTypedProperty, getTypeOf, has, hasInstance, hasProperty, hasProperty, hasProperty, isAccessorDescriptor, isConst, isDataDescriptor, isExtensible, isFalse, isGenericDescriptor, isGetterOrSetter, isSealed, isTrue, preventExtensions, put, putConst, putConstProperty, putProperty, putProperty, putProperty, querySlot, redefineProperty, sameValue, sealObject, setAttributes, setAttributes, setAttributes, setAttributes, setAttributes, setCommonDescriptorProperties, setExternalArrayData, setGetterOrSetter, setParentScope, setPrototype
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
addFirst, addLast, get, getFirst, getLast, removeFirst, removeLast, replaceAll, reversed, set, sort, spliterator
-
Field Details
-
length
protected final int lengthThe length, in elements, of the array
-
-
Constructor Details
-
NativeTypedArrayView
protected NativeTypedArrayView() -
NativeTypedArrayView
-
-
Method Details
-
get
Description copied from class:ScriptableObject
Returns the value of the indexed property or NOT_FOUND.- Specified by:
get
in interfaceScriptable
- Overrides:
get
in classScriptableObject
- Parameters:
index
- the numeric index for the propertystart
- the object in which the lookup began- Returns:
- the value of the property (may be null), or NOT_FOUND
- See Also:
-
get
Description copied from class:ScriptableObject
Returns the value of the named property or NOT_FOUND.If the property was created using defineProperty, the appropriate getter method is called.
- Specified by:
get
in interfaceScriptable
- Overrides:
get
in classScriptableObject
- Parameters:
name
- the name of the propertystart
- the object in which the lookup began- Returns:
- the value of the property (may be null), or NOT_FOUND
- See Also:
-
has
Description copied from class:ScriptableObject
Returns true if the property index is defined.- Specified by:
has
in interfaceScriptable
- Overrides:
has
in classScriptableObject
- Parameters:
index
- the numeric index for the propertystart
- the object in which the lookup began- Returns:
- true if and only if the property was found in the object
- See Also:
-
has
Description copied from class:ScriptableObject
Returns true if the named property is defined.- Specified by:
has
in interfaceScriptable
- Overrides:
has
in classScriptableObject
- Parameters:
name
- the name of the propertystart
- the object in which the lookup began- Returns:
- true if and only if the property was found in the object
- See Also:
-
put
Description copied from class:ScriptableObject
Sets the value of the indexed property, creating it if need be.- Specified by:
put
in interfaceScriptable
- Overrides:
put
in classScriptableObject
- Parameters:
index
- the numeric index for the propertystart
- the object whose property is being setval
- value to set the property to- See Also:
-
put
Description copied from class:ScriptableObject
Sets the value of the named property, creating it if need be.If the property was created using defineProperty, the appropriate setter method is called.
If the property's attributes include READONLY, no action is taken. This method will actually set the property in the start object.
- Specified by:
put
in interfaceScriptable
- Overrides:
put
in classScriptableObject
- Parameters:
name
- the name of the propertystart
- the object whose property is being setval
- value to set the property to- See Also:
-
delete
public void delete(int index) Description copied from class:ScriptableObject
Removes the indexed property from the object.If the property is not found, or it has the PERMANENT attribute, no action is taken.
- Specified by:
delete
in interfaceScriptable
- Overrides:
delete
in classScriptableObject
- Parameters:
index
- the numeric index for the property- See Also:
-
delete
Description copied from class:ScriptableObject
Removes a named property from the object.If the property is not found, or it has the PERMANENT attribute, no action is taken.
- Specified by:
delete
in interfaceScriptable
- Overrides:
delete
in classScriptableObject
- Parameters:
name
- the name of the property- See Also:
-
getIds
Description copied from class:ScriptableObject
Returns an array of ids for the properties of the object.Any properties with the attribute DONTENUM are not listed.
- Specified by:
getIds
in interfaceScriptable
- Overrides:
getIds
in classScriptableObject
- Returns:
- an array of java.lang.Objects with an entry for every listed property. Properties accessed via an integer index will have a corresponding Integer entry in the returned array. Properties accessed by a String will have a String entry in the returned array.
-
checkIndex
protected boolean checkIndex(int index) -
getBytesPerElement
public abstract int getBytesPerElement()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. -
js_get
-
js_set
-
js_constructor
protected static NativeTypedArrayView<?> js_constructor(Context cx, Scriptable scope, Object[] args, NativeTypedArrayView.TypedArrayConstructable constructable, int bytesPerElement) -
getArrayElement
Description copied from interface:ExternalArrayData
Return the element at the specified index. The result must be a type that is valid in JavaScript: Number, String, or Scriptable. This method will not be called unless "index" is in range.- Specified by:
getArrayElement
in interfaceExternalArrayData
-
setArrayElement
Description copied from interface:ExternalArrayData
Set the element at the specified index. This method will not be called unless "index" is in range. The method must check that "value" is a valid type, and convert it if necessary.- Specified by:
setArrayElement
in interfaceExternalArrayData
-
getArrayLength
public int getArrayLength()Description copied from interface:ExternalArrayData
Return the length of the array.- Specified by:
getArrayLength
in interfaceExternalArrayData
-
containsAll
- Specified by:
containsAll
in interfaceCollection<T>
- Specified by:
containsAll
in interfaceList<T>
-
indexOf
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<T>
-
toArray
-
toArray
public <U> U[] toArray(U[] ts) -
size
public int size()- Specified by:
size
in interfaceCollection<T>
- Specified by:
size
in interfaceList<T>
- Overrides:
size
in classScriptableObject
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<T>
- Specified by:
isEmpty
in interfaceList<T>
- Overrides:
isEmpty
in classScriptableObject
-
contains
-
equals
-
hashCode
public int hashCode() -
iterator
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
subList
-
add
-
add
-
addAll
-
addAll
-
clear
public void clear() -
remove
-
remove
-
removeAll
-
retainAll
-