Skip to content

Instantly share code, notes, and snippets.

View behumble's full-sized avatar

Alan Goo behumble

View GitHub Profile
@behumble
behumble / OutlineDoubleEntry.java
Created July 18, 2018 09:47
Multiple Outline Objects
package com.itextpdf.sample;
import com.itextpdf.text.Document;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfDestination;
import com.itextpdf.text.pdf.PdfOutline;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import java.io.FileOutputStream;
@behumble
behumble / ForLoop.java
Created October 19, 2019 01:40
Java for-each loop which doesn't compile
public class ForLoop {
public static void main(String[] args) {
for(char c : "Hello") {
System.out.println(c);
}
}
}