Java javax.script ScriptEngineFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.script ScriptEngineFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.script ScriptEngineFactory.

The text is from its open source code.

Method

ClassgetClass()
Returns the runtime class of this Object .
StringgetEngineName()
Returns the full name of the ScriptEngine.
StringgetEngineVersion()
Returns the version of the ScriptEngine.
ListgetExtensions()
Returns an immutable list of filename extensions, which generally identify scripts written in the language supported by this ScriptEngine.
StringgetLanguageName()
Returns the name of the scripting language supported by this ScriptEngine.
StringgetLanguageVersion()
Returns the version of the scripting language supported by this ScriptEngine.
ListgetMimeTypes()
Returns an immutable list of mimetypes, associated with scripts that can be executed by the engine.
ListgetNames()
Returns an immutable list of short names for the ScriptEngine, which may be used to identify the ScriptEngine by the ScriptEngineManager.
StringgetOutputStatement(String toDisplay)
Returns a String that can be used as a statement to display the specified String using the syntax of the supported scripting language.
ObjectgetParameter(String key)
Returns the value of an attribute whose meaning may be implementation-specific.
StringgetProgram(String... statements)
Returns a valid scripting language executable program with given statements.
ScriptEnginegetScriptEngine()
Returns an instance of the ScriptEngine associated with this ScriptEngineFactory.