@@ -84,7 +84,14 @@ public class IeAbstractQuality {
}
return v;
-
+ /**
+ * 是否是良好值
+ *
+ * @return boolean
+ */
+ public boolean isGoodValue(){
+ return !this.isBlocked()&&!isInvalid()&&!isSubstituted()&&!isNotTopical();
+ }
@Override
public String toString() {
@@ -46,6 +46,15 @@ public class IeMeasuredQuality extends IeAbstractQuality {
+ return !isOverflow()&&super.isGoodValue();
+
public boolean equals(Object o) {
return false;