java.lang.Object
io.nosqlbench.virtdata.library.basics.shared.from_long.to_collection.ListHashed
All Implemented Interfaces:
java.util.function.LongFunction<java.util.List<java.lang.Object>>

public class ListHashed
extends java.lang.Object
implements java.util.function.LongFunction<java.util.List<java.lang.Object>>
Create a List from a long input based on a set of provided functions. As a 'Pair-wise' function, the size of the resulting collection is determined directly by the number of provided element functions. As a 'Hashed' function, the input value is hashed again before being used by each element function.
  • Constructor Summary

    Constructors
    Constructor Description
    ListHashed​(java.lang.Object... funcs)  
  • Method Summary

    Modifier and Type Method Description
    java.util.List<java.lang.Object> apply​(long value)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ListHashed

      public ListHashed​(java.lang.Object... funcs)
  • Method Details

    • apply

      public java.util.List<java.lang.Object> apply​(long value)
      Specified by:
      apply in interface java.util.function.LongFunction<java.util.List<java.lang.Object>>