Package io.higson.runtime.helper
Interface PropertyVisitor
- All Known Implementing Classes:
IdentityScanner
public interface PropertyVisitor
Visitor pattern interface for traversing property trees.
- Author:
- przemek hertel
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidvisit(Property p, ElementType type) Method to visit whole subtree starting from given property.
-
Method Details
-
visit
Method to visit whole subtree starting from given property. If property path is needed, useProperty.getCanonicalPath()- Parameters:
p- current visited propertytype- property type
-