Package io.deephaven.jdbc.util
Class TypeMapper.SqlTypeInfo
java.lang.Object
io.deephaven.jdbc.util.TypeMapper.SqlTypeInfo
- Enclosing class:
- TypeMapper
public static class TypeMapper.SqlTypeInfo extends Object
-
Method Summary
Modifier and Type Method Description String
getClassName()
int
getPrecision()
int
getScale()
int
getSqlType()
String
getTypeName()
boolean
isNullable()
boolean
isSigned()
static TypeMapper.SqlTypeInfo
of(int sqlType, boolean signed, int precision, int scale, Class columnType, boolean nullable)
static TypeMapper.SqlTypeInfo
of(int sqlType, boolean signed, Class columnType, boolean nullable)
static TypeMapper.SqlTypeInfo
of(int sqlType, Class columnType, boolean nullable)
-
Method Details
-
of
public static TypeMapper.SqlTypeInfo of(int sqlType, boolean signed, int precision, int scale, Class columnType, boolean nullable) -
of
-
of
public static TypeMapper.SqlTypeInfo of(int sqlType, boolean signed, Class columnType, boolean nullable) -
getSqlType
public int getSqlType() -
isSigned
public boolean isSigned() -
getPrecision
public int getPrecision() -
getScale
public int getScale() -
getTypeName
-
getClassName
-
isNullable
public boolean isNullable()
-