public enum Trait extends Enum<Trait>
Enum Constant and Description |
---|
BOOTSTRAP_3
Indicates that Twitter Bootstrap 3 CSS and JavaScript should be included in all pages by default.
|
BOOTSTRAP_4
Indicates that Twitter Bootstrap 4 CSS and JavaScript should be included in all pages by default.
|
INITIALIZERS
Support for Tapestry 5.3 style initializers (the client-side
T5.initializers namespace). |
SCRIPTACULOUS
Indicates that the Scriptaculous JavaScript libraries should be included.
|
Modifier and Type | Method and Description |
---|---|
static Trait |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trait[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trait SCRIPTACULOUS
public static final Trait INITIALIZERS
T5.initializers
namespace).public static final Trait BOOTSTRAP_3
public static final Trait BOOTSTRAP_4
public static Trait[] values()
for (Trait c : Trait.values()) System.out.println(c);
public static Trait valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.