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

io.github.crow_misia.sdp.attribute.CharsetAttribute.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.SdpParseException

/**
 * RFC8866 6.10. charset (Character Set)
 * Name: charset
 * Value: charset-value
 * Usage Level: session
 * Charset Dependent: no
 * Syntax:
 * charset-value = 
 */
data class CharsetAttribute internal constructor(
    override var value: String,
) : BaseSdpAttribute(fieldName, value) {
    companion object {
        internal const val fieldName = "charset"

        @JvmStatic
        fun of(value: String): CharsetAttribute {
            return CharsetAttribute(value)
        }

        internal fun parse(value: String): CharsetAttribute {
            return CharsetAttribute(value)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy