Interface PropertiesParser

All Known Implementing Classes:
DefaultPropertiesParser

public interface PropertiesParser
Parses a .properties source (string, file, stream, etc) and returns a Map<String,String> that reflects the parsed properties.

This implementation differs from default Java property loading behavior in that the returned Map's iteration order is guaranteed to be the same as the order in which the properties are read. This can be beneficial if it is desired to assign meaning to property definition order.