Class StringDictionary


  • public class StringDictionary
    extends Object
    • Method Detail

      • get

        public String get​(StringList key)
        Retrieves a value from a dictionary via its key.
        Parameters:
        key - The key to get value with.
        Returns:
        Retrieves a corresponding String value or null if not found.
      • put

        public void put​(StringList key,
                        String value)
        Adds a new entry to the dictionary.
        Parameters:
        key - The key under which to put the value.
        value - The value to put.