decode static method

List decode(
  1. String value
)

Decode an encrypted String type data with encode.

Implementation

static List decode(String value) {
  return value.split("~~!feValueIndex!~~");
}