Class ByteArrayRefTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<ByteArrayRef>
-
- org.activiti.engine.impl.persistence.ByteArrayRefTypeHandler
-
- All Implemented Interfaces:
org.apache.ibatis.type.TypeHandler<ByteArrayRef>
public class ByteArrayRefTypeHandler extends org.apache.ibatis.type.TypeReference<ByteArrayRef> implements org.apache.ibatis.type.TypeHandler<ByteArrayRef>
MyBatis TypeHandler forByteArrayRef.
-
-
Constructor Summary
Constructors Constructor Description ByteArrayRefTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteArrayRefgetResult(java.sql.CallableStatement cs, int columnIndex)ByteArrayRefgetResult(java.sql.ResultSet rs, int columnIndex)ByteArrayRefgetResult(java.sql.ResultSet rs, java.lang.String columnName)voidsetParameter(java.sql.PreparedStatement ps, int i, ByteArrayRef parameter, org.apache.ibatis.type.JdbcType jdbcType)
-
-
-
Method Detail
-
setParameter
public void setParameter(java.sql.PreparedStatement ps, int i, ByteArrayRef parameter, org.apache.ibatis.type.JdbcType jdbcType) throws java.sql.SQLException- Specified by:
setParameterin interfaceorg.apache.ibatis.type.TypeHandler<ByteArrayRef>- Throws:
java.sql.SQLException
-
getResult
public ByteArrayRef getResult(java.sql.ResultSet rs, java.lang.String columnName) throws java.sql.SQLException
- Specified by:
getResultin interfaceorg.apache.ibatis.type.TypeHandler<ByteArrayRef>- Throws:
java.sql.SQLException
-
getResult
public ByteArrayRef getResult(java.sql.ResultSet rs, int columnIndex) throws java.sql.SQLException
- Specified by:
getResultin interfaceorg.apache.ibatis.type.TypeHandler<ByteArrayRef>- Throws:
java.sql.SQLException
-
getResult
public ByteArrayRef getResult(java.sql.CallableStatement cs, int columnIndex) throws java.sql.SQLException
- Specified by:
getResultin interfaceorg.apache.ibatis.type.TypeHandler<ByteArrayRef>- Throws:
java.sql.SQLException
-
-