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

com.hp.jipp.encoding.OtherString.kt Maven / Gradle / Ivy

// Copyright 2017 HP Development Company, L.P.
// SPDX-License-Identifier: MIT

package com.hp.jipp.encoding

/** An attribute value formatted as a String. */
data class OtherString(override val tag: ValueTag, override val value: String) : TaggedValue, Stringable {
    override fun toString() = "\"$value\" ($tag)"
    override fun asString() = value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy