Package rea.gameplay.games
Enum Class CartoonAvatar
- All Implemented Interfaces:
Serializable
,Comparable<CartoonAvatar>
,Constable
,Avatar
Enumeration of cartoon avatars for the game examples.
Each avatar has a name and a visual representation.
- Author:
- José Paulo Leal
jpleal@fc.up.pt
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionThe name of the avatar.The visual representation of the avatar.static CartoonAvatar
Returns the enum constant of this class with the specified name.static CartoonAvatar[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BUNNY
a cartoon bunny avatar. -
CHICK
a cartoon chick avatar. -
LAMB
a cartoon lamb avatar.
-
-
Field Details
-
avatarName
The name of the avatar. -
avatarVisual
The visual representation of the avatar.
-
-
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
-
getAvatarName
Description copied from interface:Avatar
The name of the avatar.- Specified by:
getAvatarName
in interfaceAvatar
- Returns:
- the name of the avatar
-
getAvatarVisual
Description copied from interface:Avatar
The visual representation of the avatar.- Specified by:
getAvatarVisual
in interfaceAvatar
- Returns:
- the visual representation of the avatar
-