io.github.crow_misia.sdp.attribute.MsidAttribute.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdp Show documentation
Show all versions of sdp Show documentation
SDP(Session Description Protocol) library
package io.github.crow_misia.sdp.attribute
data class MsidAttribute internal constructor(
override var value: String,
) : BaseSdpAttribute(fieldName, value) {
override fun toString() = super.toString()
companion object {
internal const val fieldName = "msid"
@JvmStatic
fun of(vararg value: String): MsidAttribute {
return MsidAttribute(value.joinToString(" "))
}
internal fun parse(value: String): SdpAttribute {
return MsidAttribute(value)
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy