Class PropertyValue

java.lang.Object
oracle.rules.rl.trace.PropertyValue
All Implemented Interfaces:
Serializable

public class PropertyValue extends Object implements Serializable
The value of a bean-property. A property value can be one of the alternatives listed below and only that one will be non-null.
  • A string representation of the property. This is the case for primitive types and Strings.
  • A nested bean object with its property values.
  • A fact ID. This occurs when the property value is an object which has itself been asserted as a fact. The data for the fact at the time of this trace can be retrieved from the RuleEngineState using the fact ID when analyzing the trace.
  • A collection of values; a List in the trace.
  • An array of values; a List in the trace.
See Also:
  • Constructor Details

    • PropertyValue

      public PropertyValue()
  • Method Details

    • getFactId

      public Integer getFactId()
      Gets the value of the factId property.
      Returns:
      possible object is Integer
    • setFactId

      public void setFactId(Integer value)
      Sets the value of the factId property.
      Parameters:
      value - allowed object is Integer
    • getString

      public String getString()
      Gets the value of the string property.
      Returns:
      possible object is String
    • setString

      public void setString(String value)
      Sets the value of the string property.
      Parameters:
      value - allowed object is String
    • getBeanObject

      public BeanObject getBeanObject()
      Gets the value of the beanObject property.
      Returns:
      possible object is BeanObject
    • setBeanObject

      public void setBeanObject(BeanObject value)
      Sets the value of the beanObject property.
      Parameters:
      value - allowed object is BeanObject
    • getArray

      public ArrayValue getArray()
      Gets the value of the array property.
      Returns:
      possible object is ArrayValue
    • setArray

      public void setArray(ArrayValue value)
      Sets the value of the array property.
      Parameters:
      value - allowed object is ArrayValue
    • getCollection

      public CollectionValue getCollection()
      Gets the value of the collection property.
      Returns:
      possible object is CollectionValue
    • setCollection

      public void setCollection(CollectionValue value)
      Sets the value of the collection property.
      Parameters:
      value - allowed object is CollectionValue