コード例 #1
0
 public void clearAllIndices() {
   for (UpdatableIndex index : myIndices.values()) {
     try {
       index.clear();
     } catch (StorageException e) {
       LOG.error(e);
       throw new RuntimeException(e);
     }
   }
 }