what are the available texture map modes in JME 1.0 and how can I specify them? I was looking for the mirror wrap mode.
They're all in Texture.java.
You might be looking for
/**
* Wrapping modifier that uses a texture twice the size of the original image with the second half being a
* mirrored image of the first. Uses MIRRORED_REPEAT.
*/
public static final int WM_MIRRORED_S_MIRRORED_T = 6;
You specify them with setWrap eg. texture.setWrap(Texture.WM_MIRRORED_S_MIRRORED_T);