Uses of Interface
org.apache.bval.jsr.util.PathNavigation.Callback
-
Packages that use PathNavigation.Callback Package Description org.apache.bval.jsr.job org.apache.bval.jsr.util -
-
Uses of PathNavigation.Callback in org.apache.bval.jsr.job
Methods in org.apache.bval.jsr.job that return PathNavigation.Callback Modifier and Type Method Description PathNavigation.Callback<?>
ValidateProperty.ForBeanProperty. callback(PathImpl.Builder pathBuilder, org.apache.bval.jsr.job.ValidateProperty.FindDescriptor findDescriptor, ObjectWrapper<Boolean> reachable)
PathNavigation.Callback<?>
ValidateProperty.ForPropertyValue. callback(PathImpl.Builder pathBuilder, org.apache.bval.jsr.job.ValidateProperty.FindDescriptor findDescriptor, ObjectWrapper<Boolean> reachable)
PathNavigation.Callback<?>
ValidateProperty.Strategy. callback(PathImpl.Builder pathBuilder, org.apache.bval.jsr.job.ValidateProperty.FindDescriptor findDescriptor, ObjectWrapper<Boolean> reachable)
-
Uses of PathNavigation.Callback in org.apache.bval.jsr.util
Classes in org.apache.bval.jsr.util that implement PathNavigation.Callback Modifier and Type Class Description static class
PathImpl.Builder
Builds non-root paths from expressions.static class
PathNavigation.CallbackProcedure
Callback "procedure" that always returns null.static class
PathNavigation.CompositeCallbackProcedure
Methods in org.apache.bval.jsr.util with parameters of type PathNavigation.Callback Modifier and Type Method Description static void
PathNavigation. navigate(CharSequence propertyPath, PathNavigation.Callback<?> callback)
Navigate a path using the specified callback.static <T> T
PathNavigation. navigateAndReturn(CharSequence propertyPath, PathNavigation.Callback<? extends T> callback)
Navigate a path using the specified callback, returning its result.Constructors in org.apache.bval.jsr.util with parameters of type PathNavigation.Callback Constructor Description CompositeCallbackProcedure(PathNavigation.Callback<?>... delegates)
Constructor parameters in org.apache.bval.jsr.util with type arguments of type PathNavigation.Callback Constructor Description CompositeCallbackProcedure(List<PathNavigation.Callback<?>> delegates)
-