Class PathElement
- Object
-
- PathElement
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractElementWithSessionScripting
,InputProcessorResultsElement
,MatchRequirementElement
,ProcessingErrorElement
public abstract class PathElement extends Object implements Serializable
Base class for all path elements.
-
-
Constructor Summary
Constructors Constructor Description PathElement()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract String
getDescription()
abstract String
getName()
Map<String,Method>
getPropertyGetters()
Returns the names (map key) and getter methods (map value) of the class' bean properties.abstract String
getType()
String
toString()
-
-
-
Method Detail
-
getType
public abstract String getType()
-
getName
public abstract String getName()
-
getDescription
public abstract String getDescription()
-
getPropertyGetters
public final Map<String,Method> getPropertyGetters()
Returns the names (map key) and getter methods (map value) of the class' bean properties.This method is internal, thus excluded from the property getters.
-
-