Package org.apache.bval.jsr.util
Class PathNavigation.CallbackProcedure
- java.lang.Object
-
- org.apache.bval.jsr.util.PathNavigation.CallbackProcedure
-
- All Implemented Interfaces:
PathNavigation.Callback<Void>
- Direct Known Subclasses:
PathNavigation.CompositeCallbackProcedure
- Enclosing class:
- PathNavigation
public abstract static class PathNavigation.CallbackProcedure extends Object implements PathNavigation.Callback<Void>
Callback "procedure" that always returns null.
-
-
Constructor Summary
Constructors Constructor Description CallbackProcedure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
complete()
Complete this CallbackProcedure.Void
result()
Return a result.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.bval.jsr.util.PathNavigation.Callback
handleGenericInIterable, handleIndexOrKey, handleProperty
-
-
-
-
Method Detail
-
result
public final Void result()
Return a result. Called after navigation is complete.- Specified by:
result
in interfacePathNavigation.Callback<Void>
- Returns:
- result
-
complete
protected void complete()
Complete this CallbackProcedure. Default implementation is noop.
-
-