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