Enum Class EntryPointType

java.lang.Object
java.lang.Enum<EntryPointType>
eu.webtoolkit.jwt.EntryPointType
All Implemented Interfaces:
Serializable, Comparable<EntryPointType>, Constable

public enum EntryPointType extends Enum<EntryPointType>
Enumeration that indicates a JWt entrypoint type.

An entry point binds a behavior to a public URL. Only the wthttpd connector currently supports multiple entry points.

  • Enum Constant Details

    • Application

      public static final EntryPointType Application
      Specifies a full-screen application.

      A full screen application manages the entire browser window and provides its own HTML page.

      See Also:
    • WidgetSet

      public static final EntryPointType WidgetSet
      Specifies an application that manages one or more widgets.

      A widget set application is part of an existing HTML page. One or more HTML elements in that web page may be bound to widgets managed by the application.

      The application presents itself as a JavaScript file, and therefore should be embedded in the web page using a <script> tag, from within the <body> (since it needs access to the <body>).

      Note: A WidgetSet application requires JavaScript support

      See Also:
    • StaticResource

      public static final EntryPointType StaticResource
      Specifies a static resource.

      A static resource binds a WResource to a public URL, and is not bound to a specific session.

  • Method Details

    • values

      public static EntryPointType[] 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 EntryPointType 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
    • getValue

      public int getValue()
      Returns the numerical representation of this enum.