Package xyz.gmitch215.socketmc.screen
Enum Class Toast.System
- All Implemented Interfaces:
Serializable
,Comparable<Toast.System>
,Constable
- Enclosing class:
Toast
Represents the types for a System Toast Message.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA chunk failed to load.A chunk failed to save.A file being added to the world failed to copy.Your game has low disk space.The narrator has been toggled.A resource pack failed to copy.A resource pack failed to load.A simple periodic notification.The server you are connecting to is unsecure.You cannot access the world.Your world has been backed up. -
Method Summary
Modifier and TypeMethodDescriptionstatic Toast.System
Returns the enum constant of this class with the specified name.static Toast.System[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NARRATOR_TOGGLE
The narrator has been toggled. -
WORLD_BACKUP
Your world has been backed up. -
PACK_LOAD_FAILURE
A resource pack failed to load. -
WORLD_ACCESS_FAILURE
You cannot access the world. -
PACK_COPY_FAILURE
A resource pack failed to copy. -
FILE_DROP_FAILURE
A file being added to the world failed to copy. -
PERIODIC_NOTIFICATION
A simple periodic notification. -
LOW_DISK_SPACE
Your game has low disk space. -
CHUNK_LOAD_FAILURE
A chunk failed to load. -
CHUNK_SAVE_FAILURE
A chunk failed to save. -
UNSECURE_SERVER_WARNING
The server you are connecting to is unsecure.
-
-
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
-