Package com.microstrategy.utils
Interface DeltaProperties.Visitor
-
- Enclosing class:
- DeltaProperties
public static interface DeltaProperties.Visitor
Implement this interface, and use eitherDeltaProperties.visit(com.microstrategy.utils.DeltaProperties.Visitor, boolean)
orDeltaProperties.visitAll(com.microstrategy.utils.DeltaProperties.Visitor)
to traverse the contents of aDeltaProperties
object.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
changedProperty(java.lang.String name, java.lang.String originalValue, java.lang.String newValue)
void
end()
void
end(java.lang.String name)
void
start()
void
start(java.lang.String name)
Denotes there is relevant content that will be visited.void
unchangedProperty(java.lang.String name, java.lang.String originalValue)
-
-
-
Method Detail
-
start
void start()
-
start
void start(java.lang.String name)
Denotes there is relevant content that will be visited. This will not be invoked if there are no properties to visit.
-
unchangedProperty
void unchangedProperty(java.lang.String name, java.lang.String originalValue)
-
changedProperty
void changedProperty(java.lang.String name, java.lang.String originalValue, java.lang.String newValue)
-
end
void end(java.lang.String name)
-
end
void end()
-
-