Class SaveString

  • All Implemented Interfaces:
    java.util.function.LongFunction<java.lang.String>

    public class SaveString
    extends java.lang.Object
    implements java.util.function.LongFunction<java.lang.String>
    Save a value to a named thread-local variable, where the variable name is fixed or a generated variable name from a provided function. Note that the input type is not that suitable for constructing names, so this is more likely to be used in an indirect naming pattern like
    SaveDouble(Load('id'))
    • Constructor Summary

      Constructors 
      Constructor Description
      SaveString​(java.lang.String name)  
      SaveString​(java.util.function.LongFunction<java.lang.Object> nameFunc)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String apply​(long value)  
      • Methods inherited from class java.lang.Object

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

      • SaveString

        public SaveString​(java.lang.String name)
      • SaveString

        public SaveString​(java.util.function.LongFunction<java.lang.Object> nameFunc)
    • Method Detail

      • apply

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