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