org.apache.camel.model
Class ProcessorDefinitionHelper

java.lang.Object
  extended by org.apache.camel.model.ProcessorDefinitionHelper

public final class ProcessorDefinitionHelper
extends Object

Helper class for ProcessorDefinition and the other model classes.


Method Summary
static
<T> Iterator<T>
filterTypeInOutputs(List<ProcessorDefinition> outputs, Class<T> type)
          Looks for the given type in the list of outputs and recurring all the children as well.
static
<T> T
findFirstTypeInOutputs(List<ProcessorDefinition> outputs, Class<T> type)
          Looks for the given type in the list of outputs and recurring all the children as well.
static RouteDefinition getRoute(ProcessorDefinition<?> node)
          Gets the route definition the given node belongs to.
static boolean isFirstChildOfType(Class<?> parentType, ProcessorDefinition<?> node)
          Is the given child the first in the outputs from the parent?
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

filterTypeInOutputs

public static <T> Iterator<T> filterTypeInOutputs(List<ProcessorDefinition> outputs,
                                                  Class<T> type)
Looks for the given type in the list of outputs and recurring all the children as well.

Parameters:
outputs - list of outputs, can be null or empty.
type - the type to look for
Returns:
the found definitions, or null if not found

findFirstTypeInOutputs

public static <T> T findFirstTypeInOutputs(List<ProcessorDefinition> outputs,
                                           Class<T> type)
Looks for the given type in the list of outputs and recurring all the children as well. Will stop at first found and return it.

Parameters:
outputs - list of outputs, can be null or empty.
type - the type to look for
Returns:
the first found type, or null if not found

isFirstChildOfType

public static boolean isFirstChildOfType(Class<?> parentType,
                                         ProcessorDefinition<?> node)
Is the given child the first in the outputs from the parent?

Parameters:
parentType - the type the parent must be
node - the node
Returns:
true if first child, false otherwise

getRoute

public static RouteDefinition getRoute(ProcessorDefinition<?> node)
Gets the route definition the given node belongs to.

Parameters:
node - the node
Returns:
the route, or null if not possible to find


Copyright © 2007-2010 The Apache Software Foundation. All Rights Reserved.