Enum Class ParseContext

java.lang.Object
java.lang.Enum<ParseContext>
ch.njol.skript.lang.ParseContext
All Implemented Interfaces:
Serializable, Comparable<ParseContext>, Constable

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

    • DEFAULT

      public static final ParseContext DEFAULT
      Default parse mode
    • EVENT

      public static final ParseContext EVENT
      Used for parsing events of triggers.

      TODO? replace with #DUMMY + SkriptParser.PARSE_LITERALS

    • COMMAND

      public static final ParseContext COMMAND
      Only used for parsing arguments of commands
    • CONFIG

      public static final ParseContext CONFIG
      Used for parsing values from a config
    • SCRIPT

      public static final ParseContext SCRIPT
      Used for parsing variables in a script's variables section
  • Method Details

    • values

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