Newer
Older
LeftoverRecipe / app / src / main / kotlin / org / ntlab / leftoverrecipe / Mapping.kt
MatsumotoKeiju on 10 Jul 2017 352 bytes [add] menu, calendar
package org.ntlab.leftoverrecipe

/**
 * Created by matsumoto_k on 2017/07/09.
 */
class Mapping {
    companion object {
        fun getRecipeTimeZone(num: Int): String {
            when (num) {
                0 -> return "朝"
                1 -> return "昼"
                2 -> return "晩"
            }
            return ""
        }
    }
}