@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 WebRTC API's RTCIceCandidateInit dictionary, which contains the information needed to fundamentally describe an RTCIceCandidate.
|
| 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() |
java.lang.String |
sdpMid()
The optional property sdpMid in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMid property.
|
java.lang.Double |
sdpMLineIndex()
The optional property sdpMLineIndex in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMLineIndex property.
|
void |
setCandidate(java.lang.String candidate)
The optional property candidate in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's candidate property.
|
void |
setSdpMid(java.lang.String sdpMid)
The optional property sdpMid in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMid property.
|
void |
setSdpMLineIndex(java.lang.Double sdpMLineIndex)
The optional property sdpMLineIndex in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's sdpMLineIndex property.
|
void |
setUsernameFragment(java.lang.String usernameFragment)
The optional property usernameFragment in the RTCIceCandidateInit dictionary specifies the value of the RTCIceCandidate object's usernameFragment property.
|
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(@Nonnull
java.lang.String candidate)
@JsProperty(name="sdpMLineIndex") @Nullable java.lang.Double sdpMLineIndex()
@JsProperty
void setSdpMLineIndex(@Nullable
java.lang.Double sdpMLineIndex)
@JsProperty(name="sdpMid") @Nullable java.lang.String sdpMid()
@JsProperty
void setSdpMid(@Nullable
java.lang.String sdpMid)
@JsProperty(name="usernameFragment") @Nullable java.lang.String usernameFragment()
@JsProperty
void setUsernameFragment(@Nullable
java.lang.String usernameFragment)