484950515253545556
* @return appropriate implementation of Structure class. */ public static Structure get(final char type) { if (type == FILE_UP || type == FILE_LOW) { return new FileStructure(); } return null; }