Tutorial by Topics: n

eval(expression[, globals=None[, locals=None]]) exec(object) exec(object, globals) exec(object, globals, locals) ArgumentDetailsexpressionThe expression code as a string, or a code objectobjectThe statement code as a string, or a code objectglobalsThe dictionary to use for global variable...
public static int myVariable; //Declaring a static variable public static myMethod() { } //Declaring a static method public static final double MY_CONSTANT; //Declaring a constant variable that is shared among all instances of the class public final double MY_CONSTANT; // Declaring a constant ...
A session keeps track of ORM objects and their changes, manages transactions and is used to perform queries.
// Single line comment (continues until line break) /* Multi line comment */ <!-- Single line comment starting with the opening HTML comment segment "<!--" (continues until line break) --> Single line comment starting with the closing HTML comment segment "-->" ...
This section provides an overview of what forms is, and why a developer might want to use it. It should also mention any large subjects within forms, and link out to the related topics. Since the Documentation for forms is new, you may need to create initial versions of those related topics. ...
This section provides an overview of what java-ee is, and why a developer might want to use it. It should also mention any large subjects within java-ee, and link out to the related topics. Since the Documentation for java-ee is new, you may need to create initial versions of those related topic...
LaTeX What is LaTeX? LaTeX (pronounced lay-tech or lah-tekh) is a markup language for typesetting documents similar to how HTML is one for web sites. LaTeX has advantages over What-You-See-Is-What-You-Get (WYSIWYG) editors such as Microsoft Word because with LaTeX you provide the content, a...
WSO2 products make heavy use of Java technology and are built on top of Carbon, the company's SOA middleware platform. Carbon makes use of Apache Axis2 and encapsulates major SOA functionality[20] such as data services, business process management, ESB routing/transformation, rules, security, thro...
Magento 2 is an open-source e-commerce platform designed to facilitate the common shopping cart structure for webpages. Compared to earlier versions of Magento, the 2.0 version is more streamlined and performant - eliminating problems with table locking and improving on the checkout system for gue...
index(big, little) length or length() length(string) match(string, regex) split(string, array, separator) split(string, array) sprintf(format, ...) sub(regex, subst, string) sub(regex, subst) gsub(regex, subst) gsub(regex, subst, string) substr(string, start, end) substr(string, start)...
Just like in Java, enum classes in Kotlin have synthetic methods allowing to list the defined enum constants and to get an enum constant by its name. The signatures of these methods are as follows (assuming the name of the enum class is EnumClass): EnumClass.valueOf(value: String): EnumClass Enu...

Page 66 of 329