for ( int i = 0; i < connectiveConstraints.length; i++ ) {
String constraint = splittedValue[ i + 1 ].trim();
String connectiveOperator = findOperator( constraint );
String connectiveValue = constraint.substring( connectiveOperator.length() ).trim();
connectiveConstraints[ i ] = new ConnectiveConstraint();
connectiveConstraints[ i ].setOperator( ( isAnd ? "&& " : "|| " ) + connectiveOperator );
setValueOnConstraint( operator, connectiveConstraints[ i ], connectiveValue );
}
con.setConnectives( connectiveConstraints );
}