Class Summary |
AccessKeyBoundValue |
A BoundValue that will decompose a second bound value
into a text string and an access key using conventional
ampersand ('&') notation. |
AndBoundValue |
BoundValue that returns Boolean.TRUE if both passed
in BoundValues return Boolean.TRUE and returns
Boolean.FALSE otherwise. |
ComparisonBoundValue |
Booolean BoundValue that compares either two BoundValues or a
BoundValues and an Object with a comparison operator and
returns the Boolean result. |
ConcatBoundValue |
BoundValue implementation that will concatenate the string
results of a list of other BoundValues. |
ContextPropertyBoundValue |
BoundValue implementation that returns the result
of calling RenderingContext.getProperty(). |
ConvertBoundValue |
A BoundValue implementation that wraps another and converts
its results to the specified java type. |
DefaultingBoundValue |
A BoundValue implementation that wraps another and returns a
provided default value in place of null. |
FixedBoundValue |
BoundValue implementation that always returns the value passed into the
constructor. |
IfBoundValue |
BoundValue that uses a Boolean BoundValue to determine which of two values
to return. |
IsAgentApplicationBoundValue |
BoundValue that returns a Boolean based on the Agent Application. |
NotBoundValue |
BoundValue that returns Boolean.FALSE if the passed
in BoundValue is Boolean.TRUE and returns
Boolean.TRUE otherwise. |
OrBoundValue |
BoundValue that returns Boolean.TRUE if either passed
in BoundValues return Boolean.TRUE and returns
Boolean.FALSE otherwise. |
StringExistsBoundValue |
BoundValue that wraps another BoundValue and returns
Boolean.TRUE
if converting its result to a String results in a non-null
and non-empty String; otherwise, returns Boolean.FALSE . |
ToStringBoundValue |
BoundValue that wraps another BoundValue and returns the result of
that BoundValue as a String, if possible. |