public interface SelectField<T> extends QueryPart
QueryPart
to be used exclusively in SELECT
clausesModifier and Type | Method and Description |
---|---|
Binding<?,T> |
getBinding()
The field's underlying
Binding . |
Converter<?,T> |
getConverter()
The field's underlying
Converter . |
DataType<T> |
getDataType()
The type of this field (might not be dialect-specific).
|
DataType<T> |
getDataType(Configuration configuration)
The dialect-specific type of this field.
|
java.lang.String |
getName()
The name of the field.
|
java.lang.Class<T> |
getType()
The Java type of the field.
|
java.lang.String getName()
The name is any of these:
Param
Converter<?,T> getConverter()
Converter
.
By default, all fields reference an identity-converter
Converter<T, T>
. Custom data types may be obtained by a
custom Converter
placed on the generated TableField
.
java.lang.Class<T> getType()
DataType<T> getDataType(Configuration configuration)
Copyright © 2018. All Rights Reserved.