Class CommonConstants

java.lang.Object
org.tquadrat.foundation.lang.CommonConstants

@ClassVersion(sourceVersion="$Id: CommonConstants.java 1134 2024-05-20 16:53:16Z tquadrat $") @UtilityClass public final class CommonConstants extends Object

This class provides a bunch of commonly used constants.

The constants are arranged into several categories.

  • Physical constants like gravity and speed of light.
  • XML constants, like often used names for entities and attributes.
  • Miscellaneous constants like the empty string or the null char.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: CommonConstants.java 1134 2024-05-20 16:53:16Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.lang.CommonConstants"

UML Diagram for "org.tquadrat.foundation.lang.CommonConstants"

UML Diagram for "org.tquadrat.foundation.lang.CommonConstants"
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final Charset
    The reference to the ASCII character set.
    static final String
    The lead-in for a CDATA wrapped String: "<![CDATA["
    static final String
    The lead-out for a CDATA wrapped String: "]]>"
    static final char
    The horizontal ellipsis: … (&hellip;/&#8230;/&#x2026;/…).
    static final char
    The hyphen character (&#8208;/&#x2010;/‐/HYPHEN).

    This is different from the character '-' (HYPHEN-MINUS), although it looks similar.
    static final char
    The non-breaking space character (&#x00A0;/ ).
    static final char
    The small non-breaking space character (&#x202F;/ ).
    static final char
    The zero-width non-breaking space character; in fact, the 'word joiner' character that should be used instead of the original character.
    static final String
    The line terminator as defined by the underlying operating system.
    static final char
    The decimal separator for the current locale.
    static final String
    The default application id if nothing else could be used: "Default Program Main".
    static final CharSequence
    An empty char sequence.
    static final Object[]
    An empty array of Object objects.
    static final String
    The empty string.
    static final String[]
    An empty array of String instances.
    static final String
    The Java installation directory: "JAVA_HOME".
    static final int
    The End-Of-File marker for streams: -1.
    static final BigDecimal
    The Gravity constant: 6.672E-11 (N * m2)/(kg2).
    static final Predicate<? extends Object>
    Returns true if the provided reference is null otherwise returns false.
    static final Charset
    The reference to the ISO-8859-1 character set.
    static final Predicate<? extends Object>
    Returns true if the provided reference is non-null otherwise returns false.
    static final int
    The index value indicating that nothing was found: -1.
    static final String
    A String containing only NUL (the NULL_CHAR).
    static final char
    The null character.
    static final String
    A String containing the sequence "null".
    static final String
    The system property for the application id as used by the logging sub-system: "org.tquadrat.logging.applicationId".
    static final String
    The vested system property for the current class path: "java.class.path".
    static final String
    The vested system property for the architecture of the current CPU: "os.arch".
    static final String
    The vested system property for the file encoding used by the JVM: "file.encoding".
    static final String
    The system property providing the flag that indicates whether the program is running in a headless mode, meaning that is does not have any kind of a graphical user interface: "java.awt.headless".
    static final String
    The system property that is used to enable the debug mode: "isDebug".
    static final String
    The system property that is used to enable the test mode: "isTest".
    static final String
    The vested system property for the Java installation directory: "java.home".
    static final String
    The system property for the name of the Java runtime: "java.runtime.name".
    static final String
    The vested system property for the Java vendor: "java.vendor".
    static final String
    The vested system property for the homepage URL of the Java vendor: "java.vendor.url".
    static final String
    The vested system property for the Java version: "java.version".
    static final String
    The vested system property for the name of the current JVM: "java.vm.name".
    static final String
    The vested system property for the name of the vendor for the current JVM: "java.vm.vendor".
    static final String
    The vested system property for the version of the current JVM: "java.vm.version".
    static final String
    The vested system property for the line separator: "line.separator".
    static final String
    The optional system property for the name of the class that provides the configuration the JDK logger: "java.util.logging.config.class".
    static final String
    The optional system property for the name of the configuration file for the JDK logger: "java.util.logging.config.file".
    static final String
    The optional system property for enabling java mail session debug: "javax.mail.Session.debug".
    static final String
    The (vested [?])
    static final String
    The system property for the name of the packages with URL protocol handlers: "java.protocol.handler.pkgs".
    static final String
    The vested system property for the name of the current operating system: "os.name".
    static final String
    The vested system property for the version of the current operating system: "os.version".
    static final String
    The system property for the location of the system preferences files on a UNIX/Linux system: "java.util.prefs.systemRoot".

    If not set, the location is /etc/, resulting to /etc/.java/.systemPrefs.

    If the default location is used, the respective folder has to be created by a user with root permissions; the files in there should have the rights 544, while the folder and its sub-folders should have 755.
    static final String
    The system property for the location of the user preferences files on a UNIX/Linux system: "java.util.prefs.userRoot".

    If not set, the location is ~/, resulting to ~/.java/.userPrefs/.
    static final String
    The system property for the synchronisation interval of the preferences on a UNIX/Linux system, in seconds: "java.util.prefs.syncInterval".

    If not set, the interval is 30 seconds.
    static final String
    The system property that is used to force the encoding for a PropertyResourceBundle: "java.util.PropertyResourceBundle.encoding".
    static final String
    The system property for the class name of the SAX XML parser factory: "javax.xml.parsers.SAXParserFactory".
    static final String
    The system property for the name of the file with the SSL key store: "javax.net.ssl.keyStore".
    static final String
    The system property for the password for the SSL key store: "javax.net.ssl.keyStorePassword".
    static final String
    The vested system property for the name of the temp folder that is used by the current user: "java.io.tmpdir".
    static final String
    The system property for the country code setting for the current user: "user.country".
    static final String
    The vested system property for the name of the current working directory of the current user: "user.dir".
    static final String
    The vested system property for the name of the home directory of the current user: "user.home".
    static final String
    The system property for the language code setting the current user: "user.language".
    static final String
    The vested system property for the name of the current user: "user.name".
    static final String
    The system property for the time zone setting the current user: "user.timezone".
    static final BigDecimal
    The speed of light in km per second = 299792.458 km/s.
    static final BigDecimal
    The value for 1 G: 9.80665 m/(s2)
    static final char
    The grouping separator for the current locale, used with large numbers to separate thousands.
    static final String
    The name of the main thread group: "main".

    This is the group of the main thread.
    static final String
    The name of the system thread group: "system".

    This is the group of several system threads and the parent thread group for the main thread group.
    static final long
    The time between 1582-10-15T00:00 (the start of the Gregorian calendar) and 1970-01-01T00:00 (the beginning of the "Epoch") in seconds: 12219292800L.
    static final BigDecimal
    The length of a (tropical) year in days, according to SI: 365.242190517 d.
    static final String
    A String containing the sequence "<UNKNOWN>".
    static final Charset
    The reference to the US-ASCII character set; this is the same as the ASCII character set.
    static final TimeZone
    Deprecated, for removal: This API element is subject to removal in a future version.
    As the java.util.Date API is now obsolete, also the related classes, like java.util.TimeZone should be used no longer.
    static final Charset
    The reference to the UTF-8 character set.
    static final String
    The attribute name for an XML attribute holding a category of something: "category".
    static final String
    The attribute name for an XML attribute holding a class name: "class".
    static final String
    The attribute name for an XML attribute holding a date, usually without the time information: "date".
    static final String
    The attribute name for an XML attribute holding a file name: "file".
    static final String
    The attribute name for the XML id attribute: "xml:id".
    static final String
    The attribute name for the XML idref attribute: "idref".
    static final String
    The attribute name for the XML language attribute: "xml:lang".
    static final String
    The attribute name for the XML name attribute: "name".

    Only names that follow exact rules for their character set can be stored in XML attributes, but free names have to be stored as XML elements.
    static final String
    The name for the node id XML attribute: "node".
    static final String
    The name for the PID XML attribute: "pid".
    static final String
    The name for the reference XML attribute: "reference".
    static final String
    The name for the sequence number XML attribute: "sequenceNumber".
    static final String
    The name for the status XML attribute: "status".
    static final String
    The attribute name for an XML attribute holding a time, usually without the date information: "time".
    static final String
    The name for an XML attribute holding a date/time: "timestamp".
    static final String
    The name for an XML attribute holding a type, in the sense of a category or model, and usually not in the sense this term is used in the context of programming languages: "type".
    static final String
    The name for the user id XML attribute: "userId".
    static final String
    The name for the version XML attribute: "version".
    static final String
    The attribute name for the XML space attribute: "xml:space".
    static final String
    The element name for an XML element representing a comment: "comment".

    This is not an XML comment (they will be written as <!
    static final String
    The element name for an XML element holding a date, usually without the time information: "date".
    static final String
    The element name for an XML element representing a description of some kind: "description".
    static final String
    The element name for an XML element containing a message: "message".
    static final String
    The element name for an XML element representing a name of some kind: "name".

    Only names that follow exact rules for their character set can be stored in XML attributes, but free names have to be stored as XML elements.
    static final String
    The element name for an XML element holding text: "text".
    static final String
    The element name for an XML element holding a time, usually without the date information: "time".
    static final String
    The name for an XML element holding a date/time: "timestamp".
    static final ZoneId
    Deprecated.
    Use ZoneOffset.UTC instead.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    No instance of this class is allowed.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait