Package com.github.jknack.handlebars
Interface ValueResolver
-
- All Known Implementing Classes:
FieldValueResolver,JavaBeanValueResolver,MapValueResolver,MemberValueResolver,MethodValueResolver
public interface ValueResolverA hook interface for resolving values from thecontext stack.- Since:
- 0.1.1
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.ObjectUNRESOLVEDA mark object.static ValueResolver[]VALUE_RESOLVERSThe default value resolvers.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>>propertySet(java.lang.Object context)List all the properties and their values for the given object.java.lang.Objectresolve(java.lang.Object context)Resolve the the context object by optionally converting the value if necessary.java.lang.Objectresolve(java.lang.Object context, java.lang.String name)Resolve the attribute's name in the context object.
-
-
-
Field Detail
-
VALUE_RESOLVERS
static final ValueResolver[] VALUE_RESOLVERS
The default value resolvers.
-
UNRESOLVED
static final java.lang.Object UNRESOLVED
A mark object.
-
-
Method Detail
-
resolve
java.lang.Object resolve(java.lang.Object context, java.lang.String name)Resolve the attribute's name in the context object. If aUNRESOLVEDis returned, thecontext stackwill continue with the next value resolver in the chain.- Parameters:
context- The context object. Not null.name- The attribute's name. Not null.- Returns:
- A
UNRESOLVEDis returned, thecontext stackwill continue with the next value resolver in the chain. Otherwise, it returns the associated value.
-
resolve
java.lang.Object resolve(java.lang.Object context)
Resolve the the context object by optionally converting the value if necessary. If aUNRESOLVEDis returned, thecontext stackwill continue with the next value resolver in the chain.- Parameters:
context- The context object. Not null.- Returns:
- A
UNRESOLVEDis returned, thecontext stackwill continue with the next value resolver in the chain. Otherwise, it returns the associated value.
-
propertySet
java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>> propertySet(java.lang.Object context)
List all the properties and their values for the given object.- Parameters:
context- The context object. Not null.- Returns:
- All the properties and their values for the given object.
-
-