Package scrapper.readers.items
package scrapper.readers.items
Used for both making file and reading files. See the baseNode package for the interface/abstract classes.
Items generally follow in the same manner:
Due to me being dumb, all classes do not actually need the toString override method.
Houses all the types of items that will be read and written into the final file. All item classes have a suffix of '_Node'.
Includes custom readers for these classes, and ENUM giving each item type.Should include all item types encountered, eg. Unspoiled Nodes (here: https://ffxiv.consolegameswiki.com/wiki/Unspoiled_Nodes)
has a class of its own. The arguments should be all the table headers.Items generally follow in the same manner:
- They extend BaseItem, and implement Item
- Have a base and alternate constructor. Base is for formatted items (raw data) and
alternate is for formatted.
An alternate constructor that has a string array as an argument for loading. - An overridden LinkedHashMap method from the interface.
- See Also: