def getIntegerProperty()

in src/main/scala/com.gu.conf/Configuration.scala [113:115]


  def getIntegerProperty(propertyName: String): Option[Int] = {
    getStringProperty(propertyName) map { _.toInt }
  }