Esempio n. 1
0
 private static boolean isBuiltinType(String storeType) {
   for (Type type : Type.values()) {
     if (type.match(storeType)) {
       return true;
     }
   }
   return false;
 }