| Type Params | Return Type | Name and description | 
|---|---|---|
|  | DEST | adaptDestination(java.lang.Object object)return object instanceof DEST ? | 
|  | SRC | adaptSource(java.lang.Object object)return object instanceof SRC ? | 
|  | java.util.List<?> | getChildren(java.lang.Object object)return object.getChildren() if appropriate. | 
|  | DEST | getDestination(SRC src)return src.getDestination() or corresponding. | 
|  | SRC | getSource(DEST dest)return dest.getSource() or corresponding. | 
return object instanceof DEST ? (DEST) object : null
return object instanceof SRC ? (SRC) object : null
return object.getChildren() if appropriate.