Skip to content

Commit

Permalink
fix: add description
Browse files Browse the repository at this point in the history
  • Loading branch information
emptyOVO committed Sep 9, 2024
1 parent d63c9e1 commit a59d4d4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
* DecodeFunction
* description: decode(binary, string)
* Decode using the supplied character set (' US-ASCII ', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16').
* If either parameter is empty, the result will also be empty.
*/
@TransformFunction(names = {"decode"})
public class DecodeFunction implements ValueParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
* EncodeFunction
* description: encode(string1, string2)
* Encode using the provided character set (' US-ASCII ', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16').
* If either parameter is empty, the result will also be empty.
*/
@TransformFunction(names = {"encode"})
public class EncodeFunction implements ValueParser {

Expand Down

0 comments on commit a59d4d4

Please sign in to comment.