Java tutorial
//package com.java2s; //License from project: Open Source License public class Main { public static String getModel(String hwRev) { //TODO: get real data? String model; if (hwRev.startsWith("snowy")) { model = "pebble_time_black"; } else if (hwRev.startsWith("spalding")) { model = "pebble_time_round_black_20mm"; } else if (hwRev.startsWith("silk")) { model = "pebble2_black"; } else if (hwRev.startsWith("robert")) { model = "pebble_time2_black"; } else { model = "pebble_black"; } return model; } }