Package com.microstrategy.utils
Interface DeltaProperties.Visitor
- 
- Enclosing class:
 - DeltaProperties
 
public static interface DeltaProperties.VisitorImplement this interface, and use eitherDeltaProperties.visit(com.microstrategy.utils.DeltaProperties.Visitor, boolean)orDeltaProperties.visitAll(com.microstrategy.utils.DeltaProperties.Visitor)to traverse the contents of aDeltaPropertiesobject.- Since:
 - MicroStrategy Web 9.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchangedProperty(java.lang.String name, java.lang.String originalValue, java.lang.String newValue)voidend()voidend(java.lang.String name)voidstart()voidstart(java.lang.String name)Denotes there is relevant content that will be visited.voidunchangedProperty(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()
 
 - 
 
 -