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

jp.co.cyberagent.aeromock.util.SystemProperty.scala Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
package jp.co.cyberagent.aeromock.util

object SystemProperty {

  def getValue(key: String): Option[String] = {
    System.getProperty(key) match {
      case null => None
      case value => Some(value)
    }
  }

  def getIntValue(key: String): Option[Int] = {
    System.getProperty(key) match {
      case null => None
      case value => Some(value.toInt)
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy