Package com.mobixess.jodb.soda.api

Examples of com.mobixess.jodb.soda.api.Evaluation


                } catch (Exception e) {
                    throw new JodbIOException(e);
                }
            }
            if(activeObject!=null){
                Evaluation evaluation = (Evaluation) getObject();
                CandidateImpl candidateImpl = _candidateImpl.get();
                candidateImpl.init(activeObject);
                evaluation.evaluate(candidateImpl);
                if(candidateImpl.isInclude()){
                    processCompareResult(COMPARE_RESULT.EQUAL);
                }else{
                    processCompareResult(COMPARE_RESULT.SMALLER);
                }
View Full Code Here


                Object obj = PrimitiveJavaTypesUtil.getAsWrappedPrimitive(fieldTypeEnum,record._primitiveRawDataBuffer);
                evaluateActiveObject(obj, null, context);
                return;
            }
            if(dataContainer!=null){
                Evaluation evaluation = (Evaluation) getObject();
                int activationDepth = evaluation.getActivationDepth() >= 0 ? evaluation.getActivationDepth() : JODBConfig.getDefaultActivationDepth();
                Object obj = context.getSession().getObjectForOffset(dataContainer.getOffset(), activationDepth);
                evaluateActiveObject(obj, null, context);
                return;
            }
        }
View Full Code Here

TOP

Related Classes of com.mobixess.jodb.soda.api.Evaluation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.