You can use the .hover(); method on any Entity, something like this, you'll still have to check which tree you're interacting with...
RS2Object tree = getObjects().closest("Oak");
if(!myPlayer().isAnimating()){
tree.interact("Chop down");
} else {
tree.hover();
}