These representations can be parsed using theHollowSchemaParser, and in turn can be used to initialize the state of aHollowWriteStateEngine: StringallSchemas=/// a String containing all schemasList<HollowSchema>schemas=HollowSchemaParser.parseCollectionOfSchemas(allSchemas);HollowWriteStateEngineinitialize...
TheHollowObjectMappercan also be used to initialize the data model of aHollowWriteStateEnginewithout adding any actual data: HollowWriteStateEngineengine=/// a state engineHollowObjectMappermapper=newHollowObjectMapper(writeEngine);mapper.initializeTypeState(Movie.class);mapper.initializeTypeState(Show.class...