public interface ValueResolver
context stack.| Modifier and Type | Field and Description |
|---|---|
static Object |
UNRESOLVED
A mark object.
|
static ValueResolver[] |
VALUE_RESOLVERS
The default value resolvers.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Map.Entry<String,Object>> |
propertySet(Object context)
List all the properties and their values for the given object.
|
Object |
resolve(Object context)
Resolve the the context object by optionally converting the value if necessary.
|
Object |
resolve(Object context,
String name)
Resolve the attribute's name in the context object.
|
static final ValueResolver[] VALUE_RESOLVERS
static final Object UNRESOLVED
Object resolve(Object context, String name)
UNRESOLVED is returned, the
context stack will
continue with the next value resolver in the chain.context - The context object. Not null.name - The attribute's name. Not null.UNRESOLVED is returned, the context
stack will continue with the next value resolver in the chain.
Otherwise, it returns the associated value.Object resolve(Object context)
UNRESOLVED is returned, the context stack will continue with
the next value resolver in the chain.context - The context object. Not null.UNRESOLVED is returned, the context
stack will continue with the next value resolver in the chain.
Otherwise, it returns the associated value.Copyright © 2010 - 2020 Adobe. All Rights Reserved