Package deltix.qsrv.hf.codec.cg
Interface QAccessor
-
- All Known Implementing Classes:
QAArrayList,QAccessMethod,QAConstant,QAVariable
public interface QAccessorProvides read/write methods to access Java variable, constant, parameter or object field, whichQValueis bound to.In the moment it is used only for QBoundType implementations, which in turn are used in QPrimitiveValue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFieldDescription()java.lang.StringgetFieldName()java.lang.ClassgetFieldType()java.lang.StringgetSchemaFieldName()JExprread()JStatementwrite(JExpr arg)JStatementwriteNullify(JExpr nullExpr)
-
-
-
Method Detail
-
read
JExpr read()
-
write
JStatement write(JExpr arg)
-
getFieldDescription
java.lang.String getFieldDescription()
-
getFieldName
java.lang.String getFieldName()
-
writeNullify
JStatement writeNullify(JExpr nullExpr)
-
getSchemaFieldName
java.lang.String getSchemaFieldName()
-
getFieldType
java.lang.Class getFieldType()
-
-