Tracks have a linked list of track entries, which each have an animation. If you want to see what the current animation is for a track:
TrackEntry entry = animState.getCurrent(0);
if (entry != null) { // null if nothing is playing on track 0.
System.out.println(entry.getAnimation().getName());
}