Coverage Report - org.kuali.spring.util.PropertyMergeType
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertyMergeType
100%
6/6
N/A
0
 
 1  
 package org.kuali.spring.util;
 2  
 
 3  7
 public enum PropertyMergeType {
 4  1
     NULL_NEW_VALUE, // New value was null, nothing changed
 5  1
     IDENTICAL_VALUES, // New value is the same as the old value, nothing changed
 6  1
     EXISTING_PROPERTY_WINS, // Existing property won out over the new property
 7  1
     ADD, // No existing property, property was added
 8  1
     OVERRIDE; // Existing property was overridden by the new property
 9  
 }