Enum Class ResourceService.Position

java.lang.Object
java.lang.Enum<ResourceService.Position>
com.djrapitops.plan.delivery.web.ResourceService.Position
All Implemented Interfaces:
Serializable, Comparable<ResourceService.Position>, Constable
Enclosing interface:
ResourceService

public static enum ResourceService.Position extends Enum<ResourceService.Position>
  • Enum Constant Details

    • PRE_CONTENT

      public static final ResourceService.Position PRE_CONTENT
      Loaded before page contents.

      Recommended for loading style sheets.

    • PRE_MAIN_SCRIPT

      public static final ResourceService.Position PRE_MAIN_SCRIPT
      Loaded after library scripts.

      Recommended for modifying the structure of the page or loading libraries.

    • AFTER_MAIN_SCRIPT

      @Deprecated public static final ResourceService.Position AFTER_MAIN_SCRIPT
      Deprecated.
      No longer supported on React pages, use the javascript API in PRE_MAIN_SCRIPT.
      Loaded after script execution.

      Recommended for loading data to custom structure on the page.

      See Also:
  • Method Details

    • values

      public static ResourceService.Position[] 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 ResourceService.Position 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
    • cleanName

      public String cleanName()