Package org.apache.bval.jsr.util
Class PathNavigation.CompositeCallbackProcedure
- java.lang.Object
-
- org.apache.bval.jsr.util.PathNavigation.CallbackProcedure
-
- org.apache.bval.jsr.util.PathNavigation.CompositeCallbackProcedure
-
- All Implemented Interfaces:
PathNavigation.Callback<Void>
- Enclosing class:
- PathNavigation
public static class PathNavigation.CompositeCallbackProcedure extends PathNavigation.CallbackProcedure
-
-
Constructor Summary
Constructors Constructor Description CompositeCallbackProcedure(List<PathNavigation.Callback<?>> delegates)
CompositeCallbackProcedure(PathNavigation.Callback<?>... delegates)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handleGenericInIterable()
Handle contiguous [].void
handleIndexOrKey(String value)
Handle an index or key embedded in [].void
handleProperty(String name)
Handle a .-delimited property.-
Methods inherited from class org.apache.bval.jsr.util.PathNavigation.CallbackProcedure
complete, result
-
-
-
-
Constructor Detail
-
CompositeCallbackProcedure
public CompositeCallbackProcedure(PathNavigation.Callback<?>... delegates)
-
CompositeCallbackProcedure
public CompositeCallbackProcedure(List<PathNavigation.Callback<?>> delegates)
-
-
Method Detail
-
handleProperty
public void handleProperty(String name)
Description copied from interface:PathNavigation.Callback
Handle a .-delimited property.
-
handleIndexOrKey
public void handleIndexOrKey(String value)
Description copied from interface:PathNavigation.Callback
Handle an index or key embedded in [].
-
handleGenericInIterable
public void handleGenericInIterable()
Description copied from interface:PathNavigation.Callback
Handle contiguous [].
-
-