I'm looking to find a good source of documentation on the different parameters in the eclipse code formatter. I've found some good examples of specific parameters on stack overflow but can't find any comprehensive parameter list or a list of different spacing options. For example one setting in the Google formatter file is
<setting id="org.eclipse.jdt.core.formatter.alignment_for_annotations_on_parameter" value="1040"/>
I've seen values for the alignment of various thing of 16, 48, 80, 81, 1040, and 1585 yet can't seem to find any concrete examples what each of these tries to do. I know 16 is attempting to put everything on one line and 80 does the same but if a line break happens it moves all parameters to their own line.
Any help here would be appreciated.