LayoutType.java 314 B

123456789101112131415
  1. package bk;
  2. /**
  3. * There are four types of layouts, based on iteration order and median alignment.
  4. * Additionally there is one layout for the combined coordinates.
  5. * @author kolja
  6. *
  7. */
  8. public enum LayoutType{
  9. TOP_BOTTOM_LEFT,
  10. TOP_BOTTOM_RIGHT,
  11. BOTTOM_TOP_LEFT,
  12. BOTTOM_TOP_RIGHT,
  13. COMBINED
  14. }