package gamegui; public enum Align { Center("Center", 0), Right("Right", 1), Left("Left", 2); private Align(final String s, final int n) { } }