Package ch.epfl.cs107.play.math
Enum Class Orientation
- All Implemented Interfaces:
Serializable,Comparable<Orientation>,Constable
???
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic OrientationfromInt(int index) Convert an int into an orientationstatic OrientationfromVector(Vector v) Convert a vector into an orientationhisLeft()hisRight()opposite()Return the opposite OrientationtoString()toVector()Convert an orientation into vectorstatic OrientationReturns the enum constant of this class with the specified name.static Orientation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UP
??? -
RIGHT
??? -
DOWN
??? -
LEFT
???
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
opposite
Return the opposite Orientation- Returns:
- (Orientation): the opposite orientation Down:Up, Right:Left
-
hisLeft
- Returns:
- (Orientation): the orientation on the left of this
-
hisRight
- Returns:
- (Orientation): the orientation on the right of this
-
toVector
Convert an orientation into vector- Returns:
- (Vector)
-
fromInt
Convert an int into an orientation- Parameters:
index- the integer representation- Returns:
- the orientation
-
fromVector
Convert a vector into an orientation- Parameters:
v- the vector representation- Returns:
- the orientation
-
toString
- Overrides:
toStringin classEnum<Orientation>
-