Package | Description |
---|---|
com.whitestein.lsps.engine.lang | |
com.whitestein.lsps.engine.state.ser | |
com.whitestein.lsps.engine.state.xml |
Modifier and Type | Method and Description |
---|---|
Value |
RuntimeToPersistentConverter.convertToPersistent(Object value,
Type type)
This method takes runtime object and converts it to its underlying persistent representation.
|
static Value |
RuntimeToPersistentConverter.convertToPersistent(ValueHolder value)
Return value for a value holder.
|
Value |
ToReadOnlyRecordConverter.convertToReadOnlyRecords(Value value)
Converts replace record values to read only record values.
|
Value |
ToMergeRelation.getTargetToMergeValues()
Returns un-merged values that has to be set into property.
|
Value |
EvaluationLevelConverter.valueInLevel(String level,
Value value)
Returns an evaluation value for an original value.
|
Modifier and Type | Method and Description |
---|---|
Value |
ToReadOnlyRecordConverter.convertToReadOnlyRecords(Value value)
Converts replace record values to read only record values.
|
Object |
RuntimeToPersistentConverter.convertToRuntime(Value val)
This method takes persistent representation of a value and returns its runtime
representation.
|
Value |
EvaluationLevelConverter.valueInLevel(String level,
Value value)
Returns an evaluation value for an original value.
|
Constructor and Description |
---|
ToMergeRelation(String property,
ExternalValue sourceValue,
Value targetToMergeValues)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
Value |
SValue.toValue(ModelInstance modelInstance)
Creates a real value.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CommonRecordValue
A common interface for values representing a record.
|
interface |
RecordChangeProxy
Objects represents record (e.g.
|
interface |
SimpleValue
Value representing simple types.
|
Modifier and Type | Class and Description |
---|---|
class |
AssignmentReferenceExpressionValue
Assignment reference expression value.
|
class |
BinaryValue
External binary value that stores info about shared record instance that contains binary.
|
class |
BooleanValue
Persistent value representing boolean.
|
class |
ClosureExpressionValue
Persistent value representing a closure expression.
|
class |
CollectionValue
Collection value.
|
class |
ComplexValue
Value representing complex types.
|
class |
ComplexValueWithEvalLevels
Value representing complex types.
|
class |
DateValue
Persistent value representing date.
|
class |
DecimalValue
Persistent value containing a decimal.
|
class |
EnumerationValue |
class |
ExpressionExpressionValue
Persistent value representing an "expression as closure".
|
class |
ExpressionValue
Persistent value representing closure.
|
class |
ExternalValue
Class used to represent an object that is not defined in the core model types.
|
class |
ListValue
Persistent value value representing an immutable list of values.
|
class |
LocalDateValue
Persistent value representing a local date.
|
class |
MapValue
Persistent value representing an immutable map.
|
class |
NullValue
Persistent value representing null.
|
class |
ObjectValue
Persistent value representing object.
|
class |
OperationExpressionValue
Persistent value representing an operation expression.
|
class |
PropertyPathValue |
class |
PropertyValue |
class |
RangeValue
Range value (e.g.
|
class |
ReadOnlyRecordValue
Read only record value object.
|
class |
RecordProxySetValue
Value for record proxy set.
|
class |
RecordValue
Persistent value representing a record.
|
class |
ReferenceExpressionValue
Persistent value representing a reference expression.
|
class |
SetValue
Persistent value representing set of variable values.
|
class |
StringValue
Persistent value representing string.
|
class |
TypeValue
Simple value representing a type.
|
class |
ValueRef
Value referencing another value by id.
|
Modifier and Type | Field and Description |
---|---|
protected Value |
Variable.value |
Modifier and Type | Method and Description |
---|---|
Value |
CollectionValue.get(int i)
Returns
i -th element of the collection. |
Value |
Escalation.getPayload()
Gets payload of this escalation.
|
Value |
RecordValue.getProperty(String name)
Returns record property by its name or null if given property does not
exist.
|
Value |
Variable.getValue()
Returns variable value.
|
Value |
Signal.getValue()
Returns the value.
|
Value |
NamedValue.getValue()
Returns the value.
|
Value |
Context.getVariableValue(String name)
Returns variable value for given name or null if it does not exist.
|
Value |
ValueRef.toValue() |
Value |
Value.toValue()
If this is a
ValueRef this method returns the referenced value, otherwise it returns
this. |
Value |
TypeValue.toValue() |
Value |
StringValue.toValue() |
Value |
RecordProxySetValue.toValue() |
Value |
ReadOnlyRecordValue.toValue() |
Value |
RangeValue.toValue() |
Value |
PropertyValue.toValue() |
Value |
PropertyPathValue.toValue() |
Value |
ObjectValue.toValue() |
Value |
NullValue.toValue() |
Value |
LocalDateValue.toValue() |
Value |
EnumerationValue.toValue() |
Value |
DecimalValue.toValue() |
Value |
DateValue.toValue() |
Value |
ComplexValue.toValue() |
Value |
BooleanValue.toValue() |
Value |
BinaryValue.toValue() |
Modifier and Type | Method and Description |
---|---|
List<Value> |
MapValue.getIndexList()
Returns the list of indexes.
|
List<Value> |
MapValue.getItemList()
Returns the list of items.
|
Set<Value> |
RecordProxySetValue.getProxies() |
Map<String,Value> |
RecordValue.values()
Returns the contained values.
|
List<Value> |
CollectionValue.values()
Returns collection of values.
|
Modifier and Type | Method and Description |
---|---|
Variable |
Context.addNewVariable(String name,
String type,
Type compiledType,
Value value,
boolean isReadOnly)
Adds a new variable.
|
Variable |
Context.addNewVariable(String name,
String type,
Value value,
boolean isReadOnly)
Deprecated.
|
Variable |
Context.addNewVariable(String name,
Type type,
Value value,
boolean isReadOnly)
Adds a new variable.
|
Signal |
ModelInstance.addSignal(Value val)
Adds a new signal.
|
Signal |
ModelInstance.addSignal(Value val,
String sourceDescritpion)
Adds a new signal.
|
Variable |
Context.createVariable(String name,
String type,
Type compiledType,
Value value,
boolean isReadOnly)
Creates a variable but does not add it to the context yet.
|
void |
RecordValue.setProperty(String name,
Value value)
Sets record property.
|
void |
NamedValue.setValue(Value value,
ModelInstance modelInstance)
Sets the new value.
|
void |
Context.setVariableValue(String name,
Value value)
Sets variable value for given name.
|
Modifier and Type | Method and Description |
---|---|
void |
CollectionValue.setValues(Collection<? extends Value> values)
Sets the list values.
|
void |
MapValue.setValues(List<? extends Value> indexes,
List<? extends Value> items)
Sets the values.
|
void |
MapValue.setValues(List<? extends Value> indexes,
List<? extends Value> items)
Sets the values.
|
Constructor and Description |
---|
Escalation(ModelInstance modelInstance,
long processInstanceId,
String elementId,
String escalationCode,
Value payload)
Creates a new escalation event with the given escalation code and it's
payload.
|
Escalation(ProcessInstance processInstance,
String elementId,
String escalationCode,
Value payload)
Creates a new escalation event with the given escalation code and it's
payload.
|
NamedValue(String name,
Value value)
Creates a new instance.
|
RecordProxySetValue(long id,
ModelInstance modelInstance,
Value parentProxySet,
Set<Value> proxies) |
Signal(long id,
ModelInstance modelInstance,
Value value,
String sourceDescription)
Creates new instance.
|
Signal(ModelInstance modelInstance,
Value value,
String sourceDescription)
Creates new instance.
|
Variable(String name,
String type,
byte flags,
Value value) |
Variable(String name,
String type,
Value value)
Creates new instance of
Variable . |
Constructor and Description |
---|
CollectionValue(long id,
ModelInstance modelInstance,
String type,
Collection<? extends Value> values)
Creates new instance of
CollectionValue . |
CollectionValue(long id,
ModelInstance modelInstance,
String type,
Collection<? extends Value> values,
String level,
long baseLevelValueId,
ComplexValue lowerLevelValue)
Creates new instance of
CollectionValue . |
ListValue(long id,
ModelInstance modelInstance,
String type,
Collection<? extends Value> values)
Creates new instance of
ListValue . |
ListValue(long id,
ModelInstance modelInstance,
String type,
Collection<? extends Value> values,
String level,
long baseLevelValueId,
ListValue lowerLevelValue)
Creates new instance of
ListValue . |
ListValue(ModelInstance modelInstance,
String type,
Collection<? extends Value> values)
Creates new instance of
ListValue . |
ListValue(ModelInstance modelInstance,
String type,
Collection<? extends Value> values,
String level,
long baseLevelValueId,
ListValue lowerLevelValue)
Creates new instance of
ListValue . |
MapValue(long id,
ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items)
Creates new instance of
MapValue . |
MapValue(long id,
ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items)
Creates new instance of
MapValue . |
MapValue(long id,
ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items,
String level,
long baseLevelValueId,
MapValue lowerLevelValue)
Creates new instance of
MapValue . |
MapValue(long id,
ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items,
String level,
long baseLevelValueId,
MapValue lowerLevelValue)
Creates new instance of
MapValue . |
MapValue(ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items)
Creates new instance of
MapValue . |
MapValue(ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items)
Creates new instance of
MapValue . |
MapValue(ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items,
String level,
long baseLevelValueId,
MapValue lowerLevelValue)
Creates new instance of
MapValue . |
MapValue(ModelInstance modelInstance,
String type,
List<? extends Value> indexes,
List<? extends Value> items,
String level,
long baseLevelValueId,
MapValue lowerLevelValue)
Creates new instance of
MapValue . |
RecordProxySetValue(long id,
ModelInstance modelInstance,
Value parentProxySet,
Set<Value> proxies) |
RecordValue(long id,
ModelInstance modelInstance,
String type,
RecordType compiledType,
Map<String,? extends Value> values)
Creates new instance of
RecordValue . |
RecordValue(long id,
ModelInstance modelInstance,
String type,
RecordType compiledType,
Map<String,? extends Value> values,
String level,
long baseLevelValueId,
ComplexValue lowerLevelValue)
Creates new instance of
RecordValue . |
RecordValue(ModelInstance modelInstance,
String type,
RecordType compiledType,
Map<String,? extends Value> values)
Creates new instance of
RecordValue . |
RecordValue(ModelInstance modelInstance,
String type,
RecordType compiledType,
Map<String,? extends Value> values,
String level,
long baseLevelValueId,
ComplexValue lowerLevelValue)
Creates new instance of
RecordValue . |
SetValue(long id,
ModelInstance modelInstance,
String type,
Collection<? extends Value> values)
Creates new instance of
SetValue . |
SetValue(long id,
ModelInstance modelInstance,
String type,
Collection<? extends Value> values,
String level,
long baseLevelValueId,
SetValue lowerLevelValue)
Creates new instance of
SetValue . |
SetValue(ModelInstance modelInstance,
String type,
Collection<? extends Value> values)
Creates new instance of
SetValue . |
SetValue(ModelInstance modelInstance,
String type,
Collection<? extends Value> values,
String level,
long baseLevelValueId,
SetValue lowerLevelValue)
Creates new instance of
SetValue . |
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.