Class TestStringSortedMapGenerator
- java.lang.Object
-
- com.google.common.collect.testing.TestStringMapGenerator
-
- com.google.common.collect.testing.TestStringSortedMapGenerator
-
- All Implemented Interfaces:
TestContainerGenerator<Map<String,String>,Map.Entry<String,String>>,TestMapGenerator<String,String>,TestSortedMapGenerator<String,String>
- Direct Known Subclasses:
SortedMapGenerators.ImmutableSortedMapCopyOfEntriesGenerator,SortedMapGenerators.ImmutableSortedMapGenerator
@GwtCompatible public abstract class TestStringSortedMapGenerator extends TestStringMapGenerator implements TestSortedMapGenerator<String,String>
Implementation helper forTestMapGeneratorfor use with sorted maps of strings.- Author:
- Chris Povirk
-
-
Constructor Summary
Constructors Constructor Description TestStringSortedMapGenerator()
-
Method Summary
-
Methods inherited from class com.google.common.collect.testing.TestStringMapGenerator
createArray, createKeyArray, createValueArray, samples
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.google.common.collect.testing.TestContainerGenerator
createArray, samples
-
Methods inherited from interface com.google.common.collect.testing.TestMapGenerator
createKeyArray, createValueArray
-
-
-
-
Constructor Detail
-
TestStringSortedMapGenerator
public TestStringSortedMapGenerator()
-
-
Method Detail
-
belowSamplesLesser
public Map.Entry<String,String> belowSamplesLesser()
Description copied from interface:TestSortedMapGeneratorReturns an entry with a key less than the keys of theTestContainerGenerator.samples()and less than the key ofTestSortedMapGenerator.belowSamplesGreater().- Specified by:
belowSamplesLesserin interfaceTestSortedMapGenerator<String,String>
-
belowSamplesGreater
public Map.Entry<String,String> belowSamplesGreater()
Description copied from interface:TestSortedMapGeneratorReturns an entry with a key less than the keys of theTestContainerGenerator.samples()but greater than the key ofTestSortedMapGenerator.belowSamplesLesser().- Specified by:
belowSamplesGreaterin interfaceTestSortedMapGenerator<String,String>
-
aboveSamplesLesser
public Map.Entry<String,String> aboveSamplesLesser()
Description copied from interface:TestSortedMapGeneratorReturns an entry with a key greater than the keys of theTestContainerGenerator.samples()but less than the key ofTestSortedMapGenerator.aboveSamplesGreater().- Specified by:
aboveSamplesLesserin interfaceTestSortedMapGenerator<String,String>
-
aboveSamplesGreater
public Map.Entry<String,String> aboveSamplesGreater()
Description copied from interface:TestSortedMapGeneratorReturns an entry with a key greater than the keys of theTestContainerGenerator.samples()and greater than the key ofTestSortedMapGenerator.aboveSamplesLesser().- Specified by:
aboveSamplesGreaterin interfaceTestSortedMapGenerator<String,String>
-
order
public Iterable<Map.Entry<String,String>> order(List<Map.Entry<String,String>> insertionOrder)
Description copied from class:TestStringMapGeneratorReturns the original element list, unchanged.- Specified by:
orderin interfaceTestContainerGenerator<Map<String,String>,Map.Entry<String,String>>- Overrides:
orderin classTestStringMapGenerator
-
create
protected abstract SortedMap<String,String> create(Map.Entry<String,String>[] entries)
- Specified by:
createin classTestStringMapGenerator
-
create
public SortedMap<String,String> create(Object... entries)
Description copied from interface:TestContainerGeneratorCreates a new container containing the given elements. TODO: would be nice to figure out how to use E... or E[] as a parameter type, but this doesn't seem to work because Java creates an array of the erased type.- Specified by:
createin interfaceTestContainerGenerator<Map<String,String>,Map.Entry<String,String>>- Specified by:
createin interfaceTestSortedMapGenerator<String,String>- Overrides:
createin classTestStringMapGenerator
-
-