com.spss.psapi.runtime

Interface RuntimeDescriptor



  • public interface RuntimeDescriptor
    This defines information about a specific runtime.
    Since:
    PSAPI 18.1
    Version:
    1.0
    Author:
    Julian Clinton
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      java.lang.String getExpressionLanguage()
      Returns the language that should be used in expressions e.g.
      java.lang.String getName()
      Returns the unique name for this runtime.
      java.lang.String getPlatform()
      Returns the generic platform name e.g.
      java.lang.String getVersion()
      Returns the version of the platform e.g. "1.6.2", "2.7".
    • Method Detail

      • getName

        java.lang.String getName()
        Returns the unique name for this runtime. This is constructed from the platform and version e.g.:
         runtime.getPlatform() + "-" + runtime.getVersion()
         
        Returns:
        the runtime name
        See Also:
        getPlatform(), getVersion()
      • getPlatform

        java.lang.String getPlatform()
        Returns the generic platform name e.g. "scala-spark", "python-anaconda".
        Returns:
        the platform name
        See Also:
        getVersion()
      • getVersion

        java.lang.String getVersion()
        Returns the version of the platform e.g. "1.6.2", "2.7".
        Returns:
        the platform version
        See Also:
        getPlatform()
      • getExpressionLanguage

        java.lang.String getExpressionLanguage()
        Returns the language that should be used in expressions e.g. "spark-sql", "scala", "python".
        Returns:
        the name of the expression language

(C) Copyright IBM Corp. 1994, 2015. All Rights Reserved.