My Java project has an ItemType interface with the given values, which is implement by some classes. How can I implement this interface on Kotlin?
public interface ItemType { int TYPE_OPTION = 2; int TYPE_GRID = 3; int TYPE_CAROUSEL = 4; int TYPE_MUSIC = 5; int TYPE_GUESS = 6; int getItemType(); }