Package ipsk.awt
Enum JScale.Orientation
- java.lang.Object
- 
- java.lang.Enum<JScale.Orientation>
- 
- ipsk.awt.JScale.Orientation
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<JScale.Orientation>
 
 public static enum JScale.Orientation extends java.lang.Enum<JScale.Orientation> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static JScale.OrientationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JScale.Orientation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NORTHpublic static final JScale.Orientation NORTH 
 - 
EASTpublic static final JScale.Orientation EAST 
 - 
SOUTHpublic static final JScale.Orientation SOUTH 
 - 
WESTpublic static final JScale.Orientation WEST 
 
- 
 - 
Method Detail- 
valuespublic static JScale.Orientation[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JScale.Orientation c : JScale.Orientation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static JScale.Orientation valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-