Package eu.webtoolkit.jwt
Enum Class EntryPointType
- All Implemented Interfaces:
Serializable
,Comparable<EntryPointType>
,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies a full-screen application.Specifies a static resource.Specifies an application that manages one or more widgets. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the numerical representation of this enum.static EntryPointType
Returns the enum constant of this class with the specified name.static EntryPointType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Application
Specifies a full-screen application.A full screen application manages the entire browser window and provides its own HTML page.
- See Also:
-
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 -
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
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
-
getValue
public int getValue()Returns the numerical representation of this enum.
-