Enum Trait
- All Implemented Interfaces:
Serializable
,Comparable<Trait>
,java.lang.constant.Constable
Defines different traits that may be enabled or disabled. This was introduced in Tapestry 5.4 to allow certain
features that exist in Tapestry 5.3 to be optionally enabled for compatibility.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that Twitter Bootstrap 3 CSS and JavaScript should be included in all pages by default.Indicates that Twitter Bootstrap 4 CSS and JavaScript should be included in all pages by default.Support for Tapestry 5.3 style initializers (the client-sideT5.initializers
namespace).Indicates that the Scriptaculous JavaScript libraries should be included. -
Method Summary
-
Enum Constant Details
-
SCRIPTACULOUS
Indicates that the Scriptaculous JavaScript libraries should be included. Tapestry 5.3 includes options for performing some kinds of animations when certain elements were updated or removed; that is no longer present in Tapestry 5.4 and Scriptaculous is not used. This trait is only used if the JavaScript infrastructure provider is set to "prototype". -
INITIALIZERS
Support for Tapestry 5.3 style initializers (the client-sideT5.initializers
namespace). -
BOOTSTRAP_3
Indicates that Twitter Bootstrap 3 CSS and JavaScript should be included in all pages by default.- Since:
- 5.5
- See Also:
-
BOOTSTRAP_4
Indicates that Twitter Bootstrap 4 CSS and JavaScript should be included in all pages by default.- Since:
- 5.5
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-