package ch.ethz.syslab.telesto.common.util; public class NumberUtil { public static Integer set0ToNull(int input) { return input == 0 ? null : input; } }