Multiple choice technology platforms and products

Which of the following methods from DomainObject/BusinessObject class will get the attribute value of a Bus Object

  1. getAttributeValue(context, Attributename)

  2. getInfo(context,"attribute[" + AttributeName +"].value")

  3. getAttributeValues(context, boolean)

  4. All the above.

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

All three methods can retrieve attribute values from BusinessObjects in the Matrix API. getAttributeValue directly returns the value, getInfo uses a context-based expression string to access attributes, and getAttributeValues can return multiple values with boolean control flags. These methods offer different interfaces for the same functionality - direct access, expression-based access, and multi-value retrieval.