metaTypeInstances.put(COMPOSITE_TYPE, compositeMetaType);
CompositeMetaType mapCompositeMetaType = new MapCompositeMetaType(SimpleMetaType.STRING);
metaTypeInstances.put(MAP_COMPOSITE_TYPE, mapCompositeMetaType);
CollectionMetaType collectionMetaType = new CollectionMetaType("ClassName", simpleMetaType);
metaTypeInstances.put(COLLECTION_TYPE, collectionMetaType);
ArrayMetaType arrayMetaType = new ArrayMetaType(2, simpleMetaType);
metaTypeInstances.put(ARRAY_TYPE, arrayMetaType);
//TableMetaType tableMetaType = new ImmutableTableMetaType("TypeName", "Description", compositeMetaType, new String[]{"Tom", "Dick", "Harry"});
//metaTypeInstances.put(TABLE_TYPE, tableMetaType);
return metaTypeInstances;