- Type Parameters:
V- type of thevalue.
public interface DbResultValue<V>
-
Method Details
-
getName
String getName()- Returns:
- the database name of this entry. That is the name of the column, the explicit alias, or a
Stringrepresentation derived from theselection criteria.
-
getDeclaration
- Returns:
- the optional
database declaration.
-
getValue
V getValue()- Returns:
- the result value from the database. May be
null.
-
withValue
- Parameters:
newValue- the newvalue.- Returns:
- a new instance of
DbResultValuewith the samenameanddeclarationbut the givenvalueasvalue.
-