io.github.crow_misia.sdp.attribute.XgoogleFlagAttribute.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 XgoogleFlagAttribute internal constructor(
override var value: String,
) : BaseSdpAttribute(fieldName, value) {
override fun toString() = super.toString()
companion object {
internal const val fieldName = "x-google-flag"
@JvmStatic
fun of(type: String): XgoogleFlagAttribute {
return XgoogleFlagAttribute(type)
}
internal fun parse(value: String): SdpAttribute {
return of(value)
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy