Uses of Class
org.apache.camel.builder.AdviceWithBuilder

Packages that use AdviceWithBuilder
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
 

Uses of AdviceWithBuilder in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return AdviceWithBuilder
 AdviceWithBuilder<T> AdviceWithBuilder.selectFirst()
          Will only apply the first node matched.
 AdviceWithBuilder<T> AdviceWithBuilder.selectIndex(int index)
          Will only apply the n'th node matched.
 AdviceWithBuilder<T> AdviceWithBuilder.selectLast()
          Will only apply the last node matched.
 AdviceWithBuilder<T> AdviceWithBuilder.selectRange(int from, int to)
          Will only apply the node in the index range matched.
<T extends ProcessorDefinition<?>>
AdviceWithBuilder<T>
AdviceWithRouteBuilder.weaveById(String pattern)
          Weaves by matching id of the nodes in the route.
<T extends ProcessorDefinition<?>>
AdviceWithBuilder<T>
AdviceWithRouteBuilder.weaveByToString(String pattern)
          Weaves by matching the to string representation of the nodes in the route.
<T extends ProcessorDefinition<?>>
AdviceWithBuilder<T>
AdviceWithRouteBuilder.weaveByType(Class<T> type)
          Weaves by matching type of the nodes in the route.
 



Apache Camel