@API
public interface Context
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Context.ReturnType
Defines the return type
|
static class |
Context.Select
Encapsulates the select expression and the definition of what return type is
expected from the expression.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCurrentDetails() |
IntegrationContext |
getIntegrationContext() |
java.lang.String |
getMode() |
java.lang.String |
getValue(Context.Select select)
Returns the value for a specific select expression.
|
default java.lang.String |
getValue(java.lang.String expression)
Deprecated.
Use
getValue(Select) instead |
java.util.List<java.lang.String> |
getValues(Context.Select select)
Returns the values for a specific select expression
|
default java.util.List<java.lang.String> |
getValues(java.lang.String expression)
Deprecated.
Use
getValues(Select) instead |
boolean |
isValidFor(com.technia.tif.enovia.integration.create.def.CreateConfig cs) |
java.util.Iterator<Context> |
iterate(java.lang.String select,
java.lang.String mode) |
java.lang.String getMode()
IntegrationContext getIntegrationContext()
IntegrationContext containing information about this
particular integration use case.boolean isValidFor(com.technia.tif.enovia.integration.create.def.CreateConfig cs)
cs - @Deprecated default java.lang.String getValue(java.lang.String expression)
getValue(Select) insteadexpression - The expression@Deprecated default java.util.List<java.lang.String> getValues(java.lang.String expression)
getValues(Select) insteadexpression - The expressionjava.lang.String getValue(Context.Select select)
select - The select expression informationjava.util.List<java.lang.String> getValues(Context.Select select)
select - The select expression informationjava.util.Iterator<Context> iterate(java.lang.String select, java.lang.String mode)
select - The select expressionmode - The mode to match insub context'sjava.lang.String getCurrentDetails()