Class MapFactories
java.lang.Object
org.spongepowered.configurate.util.MapFactories
Default implementations of 
MapFactory.- Since:
- 4.0.0
- 
Method SummaryModifier and TypeMethodDescriptionstatic MapFactoryReturns aMapFactorywhich creates maps which are sorted by insertion order.static MapFactorysorted(Comparator<Object> comparator) Returns aMapFactorywhich creates maps which are sorted using the given comparator.static MapFactoryReturns aMapFactorywhich creates maps which are naturally sorted.static MapFactoryReturns aMapFactorywhich creates maps without an order.
- 
Method Details- 
unorderedReturns aMapFactorywhich creates maps without an order.- Returns:
- a map factory which produces unordered maps
- Since:
- 4.0.0
 
- 
sortedReturns aMapFactorywhich creates maps which are sorted using the given comparator.- Parameters:
- comparator- the comparator used to sort the map keys
- Returns:
- a map factory which produces sorted maps
- Since:
- 4.0.0
 
- 
sortedNaturalReturns aMapFactorywhich creates maps which are naturally sorted.- Returns:
- a map factory which produces naturally sorted maps
- Since:
- 4.0.0
- See Also:
 
- 
insertionOrderedReturns aMapFactorywhich creates maps which are sorted by insertion order.- Returns:
- a map factory which produces maps sorted by insertion order
- Since:
- 4.0.0
 
 
-