All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.brunothg.game.engine.d2.commons.Orientation Maven / Gradle / Ivy

The newest version!
package com.github.brunothg.game.engine.d2.commons;

/**
 * 
 * Enum used for laying out components. Horizontal and vertical orientation is separated:
 * {@link HorizontalOrientation}, {@link VerticalOrientation}.
 * 
 * @author Marvin Bruns
 *
 */
public class Orientation
{

	private Orientation()
	{
	}

	public static enum HorizontalOrientation {

		West, East, Center;
	}

	public static enum VerticalOrientation {

		North, South, Center;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy