return(false);
}
@Override
protected UCOAllowedAttributesRuleDataREF typeCheck(Object value) throws DmcValueException {
UCOAllowedAttributesRuleDataREF rc = null;
if (value instanceof UCOAllowedAttributesRuleDataREF)
rc = (UCOAllowedAttributesRuleDataREF)value;
else if (value instanceof UCOAllowedAttributesRuleDataDMO)
rc = new UCOAllowedAttributesRuleDataREF((UCOAllowedAttributesRuleDataDMO)value);
else if (value instanceof RuleName)
rc = new UCOAllowedAttributesRuleDataREF((RuleName)value);
else if (value instanceof String)
rc = new UCOAllowedAttributesRuleDataREF((String)value);
else
throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with UCOAllowedAttributesRuleDataREF, UCOAllowedAttributesRuleDataDMO or String expected."));
return(rc);
}