ReferenceExpressionBuilder
Handle
interface ReferenceExpressionBuilder { readonly isEmpty: boolean; appendFormatted( value: string, format?: string): void; appendLiteral(value: string): void; appendValueProvider( valueProvider: any, format?: string): void; build(): ReferenceExpression;}5 members
Properties
property
isEmptybooleangetIndicates whether the expression is empty.
Methods
method
appendFormattedAppends a formatted value to the expression.
appendFormatted( value: string, format?: string): voidParameters
valuestringformatstringoptionalmethod
appendLiteralAppends a literal value to the expression.
appendLiteral(value: string): voidParameters
valuestringmethod
appendValueProviderAppends a value provider to the reference expression
appendValueProvider( valueProvider: any, format?: string): voidParameters
valueProvideranyformatstringoptional