Interface IMapAccess


  • public interface IMapAccess
    Simple map like access for java objects in the parser. Allows for using abbreviated expressions like $object.a which is translated to $object.get(a)
    • Method Detail

      • get

        java.lang.Object get​(java.lang.Object key)
        Get an object from the map.
        Parameters:
        key - The key
        Returns:
        The value.