Package org.hcjf.layers.query
Interface Joinable
-
- All Known Implementing Classes:
JoinableMap
public interface Joinable- Author:
- javaito
-
-
Method Summary
Modifier and Type Method Description java.lang.Objectget(java.lang.String fieldName)Return the value that corresponds to the specific field name.Joinablejoin(java.lang.String leftResource, java.lang.String rightResource, Joinable joinable)Join the data of this joinable instance with the data of the joinable parameter.
-
-
-
Method Detail
-
get
java.lang.Object get(java.lang.String fieldName)
Return the value that corresponds to the specific field name.- Parameters:
fieldName- Field name.- Returns:
- Field value.
-
join
Joinable join(java.lang.String leftResource, java.lang.String rightResource, Joinable joinable)
Join the data of this joinable instance with the data of the joinable parameter.- Parameters:
leftResource- Name of the left resource of the join.rightResource- Name of the right resource of the join.joinable- Joinable parameter.- Returns:
- Return the current joinable instance.
-
-