com.hp.jipp.encoding.EmptyAttribute.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jipp-core Show documentation
Show all versions of jipp-core Show documentation
IPP packet builder/parser
// 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())
© 2015 - 2024 Weber Informatics LLC | Privacy Policy