package frame.data.convert;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import frame.data.Variant;
|
//TODO nothing
|
|
public class LongTranslator extends Convertor {
|
|
@Override
|
public Object loadToObject(String value) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public Variant loadToVariant(String value) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
public String toString(Object value) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public String toSqlString(Object value) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public String toSqlString(String prefix, Object value, String suffix) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public String toJSONString(Object value) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public Integer toInteger(Object object) throws Exception {
|
Number _object = (Number)object;
|
return _object.intValue();
|
}
|
|
@Override
|
public Double toDouble(Object object) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public BigDecimal toBigDecimal(Object object) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public Boolean toBoolean(Object object) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public Date toDate(Object object) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
@Override
|
public Object toSelfType(Object value) throws Exception {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
}
|