Package net.sf.jkniv.whinstone.types
Interface ColumnType
-
- All Known Implementing Classes:
CassandraType,JdbcType,UnknowType
public interface ColumnTypeRepresent the data type of columns from a database- Since:
- 0.6.0
- Author:
- Alisson Gomes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisBinary()booleanisBlob()booleanisClob()booleanisDate()booleanisTime()booleanisTimestamp()Stringname()intvalue()
-
-
-
Method Detail
-
name
String name()
-
value
int value()
-
isBinary
boolean isBinary()
-
isBlob
boolean isBlob()
-
isClob
boolean isClob()
-
isDate
boolean isDate()
-
isTimestamp
boolean isTimestamp()
-
isTime
boolean isTime()
-
-