With an IDfSysObject representing a repository object named “MyDocument,” which statement is
valid and returns the object name?

A.
String value =object.getValue(“object_name”);
B.
String value = (String)object.getValue(“object_name”);
C.
String value =object.getValue(“object_name”).asString();
D.
String value =object.getValue(“object_name”).toString();