1 2 12 package com.versant.core.jdbc.sql.conv; 13 14 import com.versant.core.jdbc.JdbcConverter; 15 16 21 public class UByteArrayConverter extends TypeAsBytesConverterBase { 22 23 public static class Factory extends TypeAsBytesConverterBase.Factory { 24 25 protected JdbcConverter createConverter(JdbcConverter nested) { 26 return new UByteArrayConverter(nested); 27 } 28 29 } 30 31 public UByteArrayConverter(JdbcConverter nested) { 32 super(nested); 33 } 34 35 38 protected Object fromByteArray(byte[] buf) { 39 40 return null; 41 } 42 43 46 protected byte[] toByteArray(Object value) { 47 48 return null; 49 } 50 51 55 public Class getValueType() { 56 57 return null; 58 } 59 60 } 61 62 | Popular Tags |