Package com.xebisco.yield.platform
Enum Class ApplicationModule
- All Implemented Interfaces:
Serializable,Comparable<ApplicationModule>,Constable
Enum representing the different application modules.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents the Audio Manager module.Represents the File IO Manager module.Represents the Font Manager module.Represents the Graphics Manager module.Represents the PC Input Manager module.Represents the Texture Manager module. -
Method Summary
Modifier and TypeMethodDescriptionstatic ApplicationModuleReturns the enum constant of this class with the specified name.static ApplicationModule[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FONT_MANAGER
Represents the Font Manager module. -
TEXTURE_MANAGER
Represents the Texture Manager module. -
PC_INPUT_MANAGER
Represents the PC Input Manager module. -
AUDIO_MANAGER
Represents the Audio Manager module. -
FILE_IO_MANAGER
Represents the File IO Manager module. -
GRAPHICS_MANAGER
Represents the Graphics Manager module.
-
-
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
-