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

com.skillw.attsystem.api.read.status.StringStatus.kt Maven / Gradle / Ivy

The newest version!
package com.skillw.attsystem.api.read.status

import com.skillw.attsystem.internal.core.read.BaseReadGroup

/**
 * Number status
 *
 * @constructor Create empty Number status
 * @property numberReader
 */
class StringStatus(numberReader: BaseReadGroup) : Status(numberReader) {
    override fun clone(): StringStatus {
        val attributeStatus = StringStatus(readGroup)
        this.forEach {
            attributeStatus.register(it.key, it.value)
        }
        return attributeStatus
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy