码迷,mamicode.com
首页 > 其他好文 > 详细

Scala:枚举类型的用法

时间:2018-03-01 23:25:37      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:类型   exists   blog   obj   body   extends   string   reac   ali   

枚举定义:

/**
  * 场景类型的划分分类:划分出7类
  */
object BuildingCalibrateHeightType extends Enumeration {
  type BuildingCalibrateHeightType = Value

  val UnKnow = Value("-1")
  val HeightType1 = Value("1") // 0-21
  val HeightType2 = Value("2") // 21-45
  val HeightType3 = Value("3") // 45-100
  val HeightType4 = Value("4") // 45-100
  val HeightType5 = Value("5") // 45-100
  val HeightType6 = Value("6") // 45-100
  val HeightType7 = Value("7") // 45-100

  def checkExists(day: String) = this.values.exists(_.toString == day)

  def showAll = this.values.foreach(println)
}

 

Scala:枚举类型的用法

标签:类型   exists   blog   obj   body   extends   string   reac   ali   

原文地址:https://www.cnblogs.com/yy3b2007com/p/8490691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!