shorttype.java

来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 65 行

JAVA
65
字号
//$Id: ShortType.java,v 1.6.2.5 2003/11/27 14:51:53 oneovthafew Exp $package net.sf.hibernate.type;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Types;/** * <tt>short</tt>: A type that maps an SQL SMALLINT to a Java Short. * @author Gavin King */public class ShortType extends PrimitiveType  implements DiscriminatorType, VersionType {		private static final Short ZERO = new Short( (short) 0 );		public Object get(ResultSet rs, String name) throws SQLException {		return new Short( rs.getShort(name) );	}		public Class getPrimitiveClass() {		return short.class;	}		public Class getReturnedClass() {		return Short.class;	}		public void set(PreparedStatement st, Object value, int index) throws SQLException {		st.setShort( index, ( (Short) value ).shortValue() );	}		public int sqlType() {		return Types.SMALLINT;	}		public String getName() { return "short"; }		public String objectToSQLString(Object value) throws Exception {		return value.toString();	}		public Object stringToObject(String xml) throws Exception {		return new Short(xml);	}		public Object next(Object current) {		return new Short( (short) ( ( (Short) current ).shortValue() + 1 ) );	}		public Object seed() {		return ZERO;	}		public Object fromString(String xml) {		return new Short(xml);	}	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?