enum class HogeEnum(val code: Int) { TARO(1001), }
Log.i("HogeEnum", "${HogeEnum.TARO}") // TARO Log.i("HogeEnum", "${HogeEnum.TARO.code}") // 1001