Setx, sety,setz

In bukkit you can set a locations X,Y,Z values using a setter method such as loc.setZ(pos1.getBlockZ). How would I do the same thing in sponge?

From loc.getPosition() you get a vector(x, y, z). You can manipulate it. After that, you pass it back with setPosition(vector).