Package deltix.qsrv.hf.codec.cg
Interface QAccessor
-
- All Known Implementing Classes:
QAArrayList
,QAccessMethod
,QAConstant
,QAVariable
public interface QAccessor
Provides read/write methods to access Java variable, constant, parameter or object field, whichQValue
is 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.String
getFieldDescription()
java.lang.String
getFieldName()
java.lang.Class
getFieldType()
java.lang.String
getSchemaFieldName()
JExpr
read()
JStatement
write(JExpr arg)
JStatement
writeNullify(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()
-
-