Class Version

java.lang.Object
com.scriptbasic.api.Version

public class Version
extends java.lang.Object
Author:
Peter Verhas date July 26, 2012
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static long BUGFIX  
    static java.lang.String engineName  
    static java.util.List<java.lang.String> extensions  
    static java.lang.String language  
    static java.lang.String languageVersion
    language version 4.0j was the initial version to tribute the previous 3 version (totally different other than BASIC) which were implemented in C In the language version the suffix 'j' signals Java.
    static long MAJOR
    1L initial release 2L Java 9 compatible version
    static java.util.List<java.lang.String> mimeTypes  
    static long MINOR  
    static java.util.List<java.lang.String> names  
    static java.lang.String version  
  • Constructor Summary

    Constructors 
    Constructor Description
    Version()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • engineName

      public static final java.lang.String engineName
      See Also:
      Constant Field Values
    • MAJOR

      public static final long MAJOR
      1L initial release 2L Java 9 compatible version
      See Also:
      Constant Field Values
    • MINOR

      public static final long MINOR
      See Also:
      Constant Field Values
    • BUGFIX

      public static final long BUGFIX
      See Also:
      Constant Field Values
    • version

      public static final java.lang.String version
      See Also:
      Constant Field Values
    • extensions

      public static final java.util.List<java.lang.String> extensions
    • mimeTypes

      public static final java.util.List<java.lang.String> mimeTypes
    • names

      public static final java.util.List<java.lang.String> names
    • language

      public static final java.lang.String language
      See Also:
      Constant Field Values
    • languageVersion

      public static final java.lang.String languageVersion
      language version 4.0j was the initial version to tribute the previous 3 version (totally different other than BASIC) which were implemented in C In the language version the suffix 'j' signals Java. This is significant for the language syntax because BASIC programs can call Java methods and thus in this language version there are commands like METHOD and USE. Version 5.0j introduces : as command separator, one line IF statement and case insensitive calls to declared Java methods.
      See Also:
      Constant Field Values
  • Constructor Details