elemental2.dom.RTCStatsReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jacline-elemental2-dom Show documentation
Show all versions of jacline-elemental2-dom Show documentation
Thin Java abstractions for the standard built-in objects for
Javascript.
The newest version!
package elemental2.dom;
import elemental2.core.JsIterable;
import java.lang.Double;
import java.lang.Deprecated;
import elemental2.core.JsArray;
import jsinterop.annotations.JsProperty;
import jsinterop.base.Js;
import jsinterop.annotations.JsFunction;
import jsinterop.annotations.JsOverlay;
import elemental2.dom.RTCStats;
import java.lang.Object;
import java.lang.String;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
import elemental2.core.JsIteratorIterable;
import elemental2.core.JsDate;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public interface RTCStatsReport extends JsIterable>{
@JsType(isNative = true,name = "?",namespace = JsPackage.GLOBAL)
public interface EntriesJsIteratorIterableTypeParameterArrayUnionType{
@JsOverlay
static RTCStatsReport.EntriesJsIteratorIterableTypeParameterArrayUnionType of(Object o){
return Js.cast(o);
}
@JsOverlay
default RTCStats asRTCStats(){
return Js.cast(this);
}
@JsOverlay
default String asString(){
return Js.asString(this);
}
@JsOverlay
default boolean isString(){
return (Object)this instanceof String;
}
}
@JsFunction
public interface ForEachCallbackFn{
Object onInvoke(RTCStats p0,String p1,RTCStatsReport p2);
}
@JsType(isNative = true,name = "?",namespace = JsPackage.GLOBAL)
public interface GetTimestampUnionType{
@JsOverlay
static RTCStatsReport.GetTimestampUnionType of(Object o){
return Js.cast(o);
}
@JsOverlay
default double asDouble(){
return Js.asDouble(this);
}
@JsOverlay
default JsDate asJsDate(){
return Js.cast(this);
}
@JsOverlay
default boolean isDouble(){
return (Object)this instanceof Double;
}
@JsOverlay
default boolean isJsDate(){
return (Object)this instanceof JsDate;
}
}
@JsType(isNative = true,name = "?",namespace = JsPackage.GLOBAL)
public interface JsIterableTypeParameterArrayUnionType{
@JsOverlay
static RTCStatsReport.JsIterableTypeParameterArrayUnionType of(Object o){
return Js.cast(o);
}
@JsOverlay
default RTCStats asRTCStats(){
return Js.cast(this);
}
@JsOverlay
default String asString(){
return Js.asString(this);
}
@JsOverlay
default boolean isString(){
return (Object)this instanceof String;
}
}
JsIteratorIterable> entries(String key);
Object forEach(RTCStatsReport.ForEachCallbackFn callback,SCOPE thisObj);
Object forEach(RTCStatsReport.ForEachCallbackFn callback);
RTCStats get(String key);
@JsProperty
String getId();
@Deprecated
@JsProperty
RTCStatsReport getLocal();
@Deprecated
@JsProperty
RTCStatsReport getRemote();
@JsProperty
double getSize();
@JsProperty
RTCStatsReport.GetTimestampUnionType getTimestamp();
@JsProperty
String getType();
boolean has(String key);
JsIteratorIterable keys();
JsArray names();
String stat(String name);
JsIteratorIterable values();
}