private boolean isLookupMulti(Table table) {
   InterpretationEnum interpretation = table.getInterpretation();
   if ((interpretation != null) && (interpretation.equals(InterpretationEnum.LOOKUPMULTI))) {
     if (table.getLookup() == null) {
       LOG.error("Lookup is null for table: " + table.getPath());
       return false;
     }
     return true;
   }
   ;
   return false;
 }
 private boolean isLookup(Table table) {
   InterpretationEnum interpretation = table.getInterpretation();
   return ((interpretation != null) && (interpretation.equals(InterpretationEnum.LOOKUP)));
 }