com.hp.jipp.encoding.EmptyAttribute.kt Maven / Gradle / Ivy
// Copyright 2017 HP Development Company, L.P.
// SPDX-License-Identifier: MIT
package com.hp.jipp.encoding
/** An [Attribute] consisting only of an out-of-band tag and no values. */
class EmptyAttribute(
name: String,
val tag: OutOfBandTag
) : AttributeImpl(name, EmptyAttributeType(name, tag), listOf())