All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.crow_misia.sdp.attribute.XgoogleFlagAttribute.kt Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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