@Generated(value="org.realityforge.webtack")
@JsType(isNative=true,
namespace="<global>",
name="Object")
public interface RTCIceCandidateInit
| Modifier and Type | Interface and Description |
|---|---|
static interface |
RTCIceCandidateInit.Builder
The RTCIceCandidate() constructor creates and returns a new RTCIceCandidate object, which can be configured to represent a single ICE candidate.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
candidate()
The optional property candidate in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's candidate property.
|
static RTCIceCandidateInit.Builder |
create() |
@JsNullable java.lang.String |
sdpMid()
The optional property sdpMid in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMid property.
|
@JsNullable java.lang.Double |
sdpMLineIndex()
The optional property sdpMLineIndex in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMLineIndex property.
|
void |
setCandidate(@JsNonNull java.lang.String candidate)
The optional property candidate in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's candidate property.
|
void |
setSdpMid(@JsNullable java.lang.String sdpMid)
The optional property sdpMid in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMid property.
|
void |
setSdpMLineIndex(@JsNullable java.lang.Double sdpMLineIndex)
The optional property sdpMLineIndex in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMLineIndex property.
|
void |
setUsernameFragment(@JsNullable java.lang.String usernameFragment)
The optional property usernameFragment in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's usernameFragment property.
|
@JsNullable java.lang.String |
usernameFragment()
The optional property usernameFragment in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's usernameFragment property.
|
@JsOverlay @Nonnull static RTCIceCandidateInit.Builder create()
@JsProperty(name="candidate") java.lang.String candidate()
@JsProperty void setCandidate(@JsNonNull java.lang.String candidate)
@JsProperty(name="sdpMLineIndex") @JsNullable java.lang.Double sdpMLineIndex()
@JsProperty void setSdpMLineIndex(@JsNullable java.lang.Double sdpMLineIndex)
@JsProperty(name="sdpMid") @JsNullable java.lang.String sdpMid()
@JsProperty void setSdpMid(@JsNullable java.lang.String sdpMid)
@JsProperty(name="usernameFragment") @JsNullable java.lang.String usernameFragment()
@JsProperty void setUsernameFragment(@JsNullable java.lang.String usernameFragment)