Package oracle.rules.rl.trace
Class PropertyValue
java.lang.Object
oracle.rules.rl.trace.PropertyValue
- All Implemented Interfaces:
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
String
s. - 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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetArray()
Gets the value of the array property.Gets the value of the beanObject property.Gets the value of the collection property.Gets the value of the factId property.Gets the value of the string property.void
setArray
(ArrayValue value) Sets the value of the array property.void
setBeanObject
(BeanObject value) Sets the value of the beanObject property.void
setCollection
(CollectionValue value) Sets the value of the collection property.void
Sets the value of the factId property.void
Sets the value of the string property.
-
Constructor Details
-
PropertyValue
public PropertyValue()
-
-
Method Details
-
getFactId
Gets the value of the factId property.- Returns:
- possible object is
Integer
-
setFactId
Sets the value of the factId property.- Parameters:
value
- allowed object isInteger
-
getString
Gets the value of the string property.- Returns:
- possible object is
String
-
setString
Sets the value of the string property.- Parameters:
value
- allowed object isString
-
getBeanObject
Gets the value of the beanObject property.- Returns:
- possible object is
BeanObject
-
setBeanObject
Sets the value of the beanObject property.- Parameters:
value
- allowed object isBeanObject
-
getArray
Gets the value of the array property.- Returns:
- possible object is
ArrayValue
-
setArray
Sets the value of the array property.- Parameters:
value
- allowed object isArrayValue
-
getCollection
Gets the value of the collection property.- Returns:
- possible object is
CollectionValue
-
setCollection
Sets the value of the collection property.- Parameters:
value
- allowed object isCollectionValue
-