1 package org.apache.ojb.broker.metadata; 2 3 17 18 import java.io.Serializable ; 19 20 31 public interface FieldType extends Serializable  32 { 33 41 public Object copy(Object fieldValue); 42 43 49 public boolean equals(Object firstValue, Object secondValue); 50 51 54 public int getSqlType(); 55 56 60 public void setSqlType(JdbcType jdbcType); 61 62 67 public boolean isMutable(); 68 } 69 | Popular Tags |