I'm finally dumping iText for PDFBox. The requirements for the document to be created are trivial. With iText I've been using something like
for (Foo foo : foos) {
document.add(new Paragraph(foo.getName()));
}
What is the PDFBox equivalent to that? Their Hello World example doesn't really give a clue.