java.lang.Object
io.nosqlbench.virtdata.library.basics.shared.unary_string.URLDecode
All Implemented Interfaces:
java.util.function.Function<java.lang.String,​java.lang.String>

public class URLDecode
extends java.lang.Object
implements java.util.function.Function<java.lang.String,​java.lang.String>
URLDecode string data
  • Constructor Summary

    Constructors
    Constructor Description
    URLDecode()  
    URLDecode​(java.lang.String charset)
    URLDecode any incoming string using the specified charset.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String apply​(java.lang.String s)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • Constructor Details

    • URLDecode

      public URLDecode​(java.lang.String charset)
      URLDecode any incoming string using the specified charset.
      Parameters:
      charset - A valid character set name from Charset
    • URLDecode

      public URLDecode()
  • Method Details

    • apply

      public java.lang.String apply​(java.lang.String s)
      Specified by:
      apply in interface java.util.function.Function<java.lang.String,​java.lang.String>