List of usage examples for org.apache.ibatis.type EnumTypeHandler subclass-usage
From source file com.thoughtworks.go.server.dao.handlers.BuildStateTypeHandlerCallback.java
public class BuildStateTypeHandlerCallback extends EnumTypeHandler<JobState> { public BuildStateTypeHandlerCallback(Class<JobState> type) { super(type); } @Override
From source file cz.wicketstuff.examples.spring.persistence.mybatis.typehandler.TaskStatusTypeHandler.java
/** * @author Martin Strejc (strma17) * */ public class TaskStatusTypeHandler extends EnumTypeHandler<Task.Status> {