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

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

There is a newer version: 1.4.0
Show newest version
package io.github.crow_misia.sdp.attribute

import io.github.crow_misia.sdp.SdpElement
import io.github.crow_misia.sdp.Utils.appendSdpLineSeparator

/**
 * RFC 8866 5.13. Attributes.
 * a=
 * a=:
 */
abstract class SdpAttribute : SdpElement() {
    abstract val field: String

    override fun joinTo(buffer: StringBuilder) = buffer.apply {
        append(fieldPart)
        append(field)
        valueJoinTo(this)
        appendSdpLineSeparator()
    }

    protected abstract fun valueJoinTo(buffer: StringBuilder): StringBuilder

    companion object {
        internal const val fieldPart = "a="
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy