package starling.utils {
/**
 *  A class that provides constant values for horizontal and vertical alignment of objects. 
 * @externs
 */
public class Align {
	/**
	 *  @private 
	 */
	public static const LEFT:String = "left";
	/**
	 *  Horizontal right alignment. 
	 */
	public static const RIGHT:String = "right";
	/**
	 *  Vertical top alignment. 
	 */
	public static const TOP:String = "top";
	/**
	 *  Vertical bottom alignment. 
	 */
	public static const BOTTOM:String = "bottom";
	/**
	 *  Centered alignment. 
	 */
	public static const CENTER:String = "center";
	/**
	 *  Indicates whether the given alignment string is valid. 
	 */
	public static function isValid(align:String):Boolean { return false; }
	/**
	 *  Indicates if the given string is a valid horizontal alignment. 
	 */
	public static function isValidHorizontal(align:String):Boolean { return false; }
	/**
	 *  Indicates if the given string is a valid vertical alignment. 
	 */
	public static function isValidVertical(align:String):Boolean { return false; }
}
}
