Package | Description |
---|---|
net.java.html.lib | |
net.java.html.lib.dom |
Modifier and Type | Field and Description |
---|---|
static Uint8Array |
Uint8Array.prototype
Returns a string representation of an array.
|
Modifier and Type | Method and Description |
---|---|
static Uint8Array |
Uint8Array.$as(Object obj) |
Uint8Array |
Uint8Array.copyWithin(double target,
double start)
Returns the this object after copying a section of the array identified by start and end
to the same array starting at position target
|
Uint8Array |
Uint8Array.copyWithin(double target,
double start,
double end)
Returns the this object after copying a section of the array identified by start and end
to the same array starting at position target
|
Uint8Array |
Uint8Array.fill(double value)
Returns the this object after filling the section identified by start and end with value
|
Uint8Array |
Uint8Array.fill(double value,
double start)
Returns the this object after filling the section identified by start and end with value
|
Uint8Array |
Uint8Array.fill(double value,
double start,
double end)
Returns the this object after filling the section identified by start and end with value
|
Uint8Array |
Uint8Array.filter(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn)
Returns the elements of an array that meet the condition specified in a callback function.
|
Uint8Array |
Uint8Array.filter(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn,
Object thisArg)
Returns the elements of an array that meet the condition specified in a callback function.
|
static Uint8Array |
Uint8Array.from(ArrayLike<Number> arrayLike)
Creates an array from an array-like or iterable object.
|
static Uint8Array |
Uint8Array.from(ArrayLike<Number> arrayLike,
Function.A2<? super Number,? super Number,? extends Number> mapfn)
Creates an array from an array-like or iterable object.
|
static Uint8Array |
Uint8Array.from(ArrayLike<Number> arrayLike,
Function.A2<? super Number,? super Number,? extends Number> mapfn,
Object thisArg)
Creates an array from an array-like or iterable object.
|
Uint8Array |
Uint8Array.map(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn)
Calls a defined callback function on each element of an array, and returns an array that
contains the results.
|
Uint8Array |
Uint8Array.map(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn,
Object thisArg)
Calls a defined callback function on each element of an array, and returns an array that
contains the results.
|
static Uint8Array |
Uint8Array.of(double... items)
Returns a new array from a set of elements.
|
Uint8Array |
Uint8Array.reverse()
Reverses the elements in an Array.
|
Uint8Array |
Uint8Array.slice()
Returns a section of an array.
|
Uint8Array |
Uint8Array.slice(double start)
Returns a section of an array.
|
Uint8Array |
Uint8Array.slice(double start,
double end)
Returns a section of an array.
|
Uint8Array |
Uint8Array.sort()
Sorts an array.
|
Uint8Array |
Uint8Array.sort(Function.A2<? super Number,? super Number,? extends Number> compareFn)
Sorts an array.
|
Uint8Array |
Uint8Array.subarray(double begin)
Gets a new Uint8Array view of the ArrayBuffer store for this array, referencing the elements
at begin, inclusive, up to end, exclusive.
|
Uint8Array |
Uint8Array.subarray(double begin,
double end)
Gets a new Uint8Array view of the ArrayBuffer store for this array, referencing the elements
at begin, inclusive, up to end, exclusive.
|
Modifier and Type | Method and Description |
---|---|
Boolean |
Uint8Array.every(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn)
Determines whether all the members of an array satisfy the specified test.
|
Boolean |
Uint8Array.every(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn,
Object thisArg)
Determines whether all the members of an array satisfy the specified test.
|
Uint8Array |
Uint8Array.filter(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn)
Returns the elements of an array that meet the condition specified in a callback function.
|
Uint8Array |
Uint8Array.filter(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn,
Object thisArg)
Returns the elements of an array that meet the condition specified in a callback function.
|
void |
Uint8Array.forEach(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Void> callbackfn)
Performs the specified action for each element in an array.
|
void |
Uint8Array.forEach(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Void> callbackfn,
Object thisArg)
Performs the specified action for each element in an array.
|
Uint8Array |
Uint8Array.map(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn)
Calls a defined callback function on each element of an array, and returns an array that
contains the results.
|
Uint8Array |
Uint8Array.map(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn,
Object thisArg)
Calls a defined callback function on each element of an array, and returns an array that
contains the results.
|
double |
Uint8Array.reduce(Function.A4<? super Number,? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn)
Calls the specified callback function for all the elements in an array.
|
double |
Uint8Array.reduce(Function.A4<? super Number,? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn,
double initialValue)
Calls the specified callback function for all the elements in an array.
|
<U> U |
Uint8Array.reduce(Function.A4<? super U,? super Number,? super Number,? super Uint8Array,? extends U> callbackfn,
U initialValue)
Calls the specified callback function for all the elements in an array.
|
double |
Uint8Array.reduceRight(Function.A4<? super Number,? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn)
Calls the specified callback function for all the elements in an array, in descending order.
|
double |
Uint8Array.reduceRight(Function.A4<? super Number,? super Number,? super Number,? super Uint8Array,? extends Number> callbackfn,
double initialValue)
Calls the specified callback function for all the elements in an array, in descending order.
|
<U> U |
Uint8Array.reduceRight(Function.A4<? super U,? super Number,? super Number,? super Uint8Array,? extends U> callbackfn,
U initialValue)
Calls the specified callback function for all the elements in an array, in descending order.
|
Boolean |
Uint8Array.some(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn)
Determines whether the specified callback function returns true for any element of an array.
|
Boolean |
Uint8Array.some(Function.A3<? super Number,? super Number,? super Uint8Array,? extends Boolean> callbackfn,
Object thisArg)
Determines whether the specified callback function returns true for any element of an array.
|
Modifier and Type | Field and Description |
---|---|
Objs.Property<Uint8Array> |
MSMediaKeyNeededEvent.initData |
Objs.Property<Uint8Array> |
MSMediaKeyMessageEvent.message |
Modifier and Type | Method and Description |
---|---|
Uint8Array |
MSMediaKeyNeededEvent.initData() |
Uint8Array |
MSMediaKeyMessageEvent.message() |
Modifier and Type | Method and Description |
---|---|
MSMediaKeySession |
MSMediaKeys.createSession(String type,
Uint8Array initData) |
MSMediaKeySession |
MSMediaKeys.createSession(String type,
Uint8Array initData,
Uint8Array cdmData) |
void |
AnalyserNode.getByteFrequencyData(Uint8Array array) |
void |
AnalyserNode.getByteTimeDomainData(Uint8Array array) |
void |
MSMediaKeySession.update(Uint8Array key) |
Copyright © 2018. All rights reserved.