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

com.hp.jipp.model.JobPresetsSupported.kt Maven / Gradle / Ivy

// Copyright 2018 HP Development Company, L.P.
// SPDX-License-Identifier: MIT
//
// DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at
// https://www.iana.org/assignments/ipp-registrations/ipp-registrations.xml, updated on 2023-03-07
@file:Suppress("MaxLineLength", "WildcardImport")

package com.hp.jipp.model

import com.hp.jipp.encoding.* // ktlint-disable no-wildcard-imports

/**
 * Data object corresponding to a "job-presets-supported" collection as defined in:
 * [PWG5100.13](https://ftp.pwg.org/pub/pwg/candidates/cs-ippnodriver20-20230301-5100.13.pdf).
 */
@Suppress("RedundantCompanionReference", "unused")
data class JobPresetsSupported
constructor(
    var presetCategory: String? = null,
    /** May contain any keyword from [PresetName] or a name. */
    var presetName: KeywordOrName? = null,
) : AttributeCollection {

    /** Construct an empty [JobPresetsSupported]. */
    constructor() : this(null)

    /** Produce an attribute list from members. */
    override val attributes: List>
        get() = listOfNotNull(
            presetCategory?.let { JobPresetsSupported.presetCategory.of(it) },
            presetName?.let { JobPresetsSupported.presetName.of(it) },
        )

    /** Defines types for each member of [JobPresetsSupported]. */
    companion object : AttributeCollection.Converter {
        override fun convert(attributes: List>): JobPresetsSupported =
            JobPresetsSupported(
                extractOne(attributes, presetCategory),
                extractOne(attributes, presetName),
            )
        override val cls = JobPresetsSupported::class.java
        @Deprecated("Remove this symbol")
        @JvmField val Types = this
        @JvmField val presetCategory = KeywordType("preset-category")
        @JvmField val presetName = KeywordOrNameType("preset-name")
    }
    override fun toString() = "JobPresetsSupported(${attributes.joinToString()})"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy