Enum Class EndingReason

java.lang.Object
java.lang.Enum<EndingReason>
net.thewinnt.cutscenes.event.EndingReason
All Implemented Interfaces:
Serializable, Comparable<EndingReason>, Constable

public enum EndingReason extends Enum<EndingReason>
  • Enum Constant Details

    • FINISH

      public static final EndingReason FINISH
      A cutscene has finished naturally
    • INTERRUPT

      public static final EndingReason INTERRUPT
      A cutscene has been interrupted by another cutscene or the player logging out
    • COMMAND

      public static final EndingReason COMMAND
      A cutscene has been stopped by command
    • ERROR

      public static final EndingReason ERROR
      A cutscene ended with an error
  • Method Details

    • values

      public static EndingReason[] 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

      public static EndingReason valueOf(String name)
      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 name
      NullPointerException - if the argument is null