View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.messages;
2   
3   public class UT2004ItemTypeTranslator implements ItemTypeTranslator {
4   
5   	@Override
6   	public ItemType get(String utName) {
7       	if (utName == null || utName.toLowerCase().equals("none")) return UT2004ItemType.NONE;
8   		return UT2004ItemType.getItemType(utName);
9   	}
10  
11  }