Class REnvironment

    • Constructor Detail

      • REnvironment

        public REnvironment()
    • Method Detail

      • getEngine

        public org.rosuda.JRI.Rengine getEngine()
      • getValueMetadata

        public Optional<VTLValueMetadata> getValueMetadata​(String name)
        Description copied from interface: Environment
        Returns an Optional reference to the metadata of a VTL object with the specified name in this environment.
        Specified by:
        getValueMetadata in interface Environment
        Parameters:
        name - The name of requested object
        Returns:
        An Optional with a reference to the metadata of the requested object o Optional.empty() if the object is not found in this environment.
      • getValue

        public Optional<VTLValue> getValue​(String name)
        Description copied from interface: Environment
        Returns an Optional reference to a VTL object with the specified name in this environment.
        Specified by:
        getValue in interface Environment
        Parameters:
        name - The name of requested object.
        Returns:
        An Optional with a reference to the requested object o Optional.empty() if the object is not found in this environment.
      • contains

        public boolean contains​(String id)
        Description copied from interface: Environment
        Checks if this environment provides a VTL object with the specified name.
        Specified by:
        contains in interface Environment
        Parameters:
        id - The name of requested object.
        Returns:
        true if this environment provides the specified object.