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

io.chrisdavenport.osdetect.OperatingSystem.scala Maven / Gradle / Ivy

The newest version!
package io.chrisdavenport.osdetect

case class OperatingSystem(osType: OSType, version: String, arch: Arch)

object OperatingSystem {

  def fromStrings(name: String, version: String, archS: String): OperatingSystem = {
    val ostype = OSType.fromString(name)
    val arch = Arch.fromString(archS)
    OperatingSystem(ostype, version, arch)
  }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy