Package com.kscs.util.jaxb
Schnittstelle PropertyVisitor
public interface PropertyVisitor
Interface to be implemented by a property visitor
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleanvisit(CollectionProperty<?, ?> property) Called upon visiting a collection propertybooleanvisit(IndirectCollectionProperty<?, ?> property) Called upon visiting a collection property, where the collection items are wrapped in aJAXBElementinstance.booleanvisit(IndirectPrimitiveCollectionProperty<?, ?> property) Called upon visiting a collection property, where the collection items are wrapped in aJAXBElementinstance and are of a java primitive typebooleanvisit(ItemProperty<?, ?> property) Called upon visitng a collection elementbooleanvisit(SingleProperty<?, ?> property) Called upon visitng a single-value propertyvoidCalled upon visiting a top-level object
-
Methodendetails
-
visit
Called upon visiting a top-level object- Parameter:
value- The Object to be visited
-
visit
Called upon visitng a collection element- Parameter:
property- The property being visited- Gibt zurück:
- true if visiting shall continue, false if visiting should be finished
-
visit
Called upon visitng a single-value property- Parameter:
property- The property being visited- Gibt zurück:
- true if visiting shall continue, false if visiting should be finished
-
visit
Called upon visiting a collection property- Parameter:
property- The property being visited- Gibt zurück:
- true if visiting shall continue, false if visiting should be finished
-
visit
Called upon visiting a collection property, where the collection items are wrapped in aJAXBElementinstance.- Parameter:
property- The property being visited- Gibt zurück:
- true if visiting shall continue, false if visiting should be finished
-
visit
Called upon visiting a collection property, where the collection items are wrapped in aJAXBElementinstance and are of a java primitive type- Parameter:
property- The property being visited- Gibt zurück:
- true if visiting shall continue, false if visiting should be finished
-