Uses of Class
org.fife.rsta.ac.js.ecma.api.ecma3.JSString
Packages that use JSString
Package
Description
-
Uses of JSString in org.fife.rsta.ac.js.ecma.api.client
Fields in org.fife.rsta.ac.js.ecma.api.client declared as JSStringModifier and TypeFieldDescriptionNavigator.appCodeNameProperty appCodeNameNavigator.appNameProperty appNameNavigator.appVersionProperty appVersionWindow.defaultStatusProperty defaultStatusWindow.frameElementProperty frameElementWindow.fullScreenProperty fullScreenLocation.hashProperty hashLocation.hostProperty hostLocation.hostnameProperty hostnameLocation.hrefProperty hrefWindow.nameProperty nameLocation.pathnameProperty pathnameNavigator.platformProperty platformLocation.portProperty portLocation.protocolProperty protocolLocation.searchProperty searchWindow.sessionStorageProperty sessionStorageWindow.statusProperty statusNavigator.userAgentProperty userAgent -
Uses of JSString in org.fife.rsta.ac.js.ecma.api.client.funtions
Methods in org.fife.rsta.ac.js.ecma.api.client.funtions that return JSStringModifier and TypeMethodDescriptionfunction atob(arg) The atob() method of window object decodes a string of data which has been encoded using base-64 encoding.function btoa(arg) The btoa() method of window object is used to convert a given string to an encoded data (using base-64 encoding) string.WindowFunctions.prompt()function prompt(arg1, arg2) Displays a dialog box that prompts the visitor for inputMethods in org.fife.rsta.ac.js.ecma.api.client.funtions with parameters of type JSStringModifier and TypeMethodDescriptionvoidfunction alert() Displays an alert box with a message and an OK buttonvoidfunction assign(newURL) method loads a new documentfunction atob(arg) The atob() method of window object decodes a string of data which has been encoded using base-64 encoding.function btoa(arg) The btoa() method of window object is used to convert a given string to an encoded data (using base-64 encoding) string.function confirm() Displays a dialog box with a message and an OK and a Cancel buttonWindowFunctions.getComputedStyle(Element arg1, JSString arg2) function getComputedStyle(arg1, arg2)voidfunction go - Loads a specific URL from the history list.function open(URL, name, specs, replace) Opens a new browser windowvoidfunction replace(newURL) - method replaces the current document with a new one -
Uses of JSString in org.fife.rsta.ac.js.ecma.api.e4x
Fields in org.fife.rsta.ac.js.ecma.api.e4x declared as JSStringModifier and TypeFieldDescriptionprotected JSStringE4XQName.localNameproperty localName local name part of QNameprotected JSStringE4XNamespace.prefixproperty prefixprotected JSStringE4XNamespace.uriproperty uriprotected JSStringE4XQName.uriproperty uri namespace uri part of QNameConstructors in org.fife.rsta.ac.js.ecma.api.e4x with parameters of type JSStringModifierConstructorDescriptionE4XNamespace(JSString uriValue) Object Namespace(uriValue)E4XNamespace(JSString prefixValue, JSString uriValue) Object Namespace(prefixValue, uriValue)E4XQName(E4XNamespace namespace, JSString name) Object QName(namespace, name)Object QName(name) -
Uses of JSString in org.fife.rsta.ac.js.ecma.api.e4x.functions
Methods in org.fife.rsta.ac.js.ecma.api.e4x.functions that return JSStringModifier and TypeMethodDescriptionE4XXMLFunctions.nodeKind()function nodeKind() return an array of Namespace objects representing the namespace declarations associated with this object.E4XXMLFunctions.toXMLString()function toXMLString() returns the toXMLString() method returns an XML encoded string representation of this XML object.E4XXMLListFunctions.toXMLString()function toXMLString() returns the toXMLString() method returns an XML encoded string representation of this XML object.Methods in org.fife.rsta.ac.js.ecma.api.e4x.functions with parameters of type JSStringModifier and TypeMethodDescriptionfunction attribute(attributeName) finds list of XML attributes associated with the attribute name.function attribute(attributeName) calls the attribute method of each XML object in this XMLList object passing attributeName as a parameter and returns an XMLList containing the results in order.function child(propertyName) finds list of XML object matching a given propertyName.function child(propertyName) calls the child() method of each XML object in this XMLList object and returns an XMLList containing the results in order.E4XXMLFunctions.descendants(JSString name) function descendants(name) returns all the XML valued descendants (children, grandchildren, great-grandchildren, etc.)E4XXMLListFunctions.descendants(JSString name) function descendants(name) calls the descendants method of each XML object in this XMLList object with the optional parameter name (or the string "*" if name is omitted) and returns an XMLList containing the results concatenated in order.function elements(name) returns the child elements.function elements(name) calls the elements method of each XML object in this XMLList object passing the optional parameter name (or "*" if it is omitted) and returns an XMList containing the results in order.function isXMLName(name) determines whether name is a valid XML name.function namespace(prefix) returns the namespace associated with this object.E4XXMLFunctions.processingInstructions(JSString name) function processingInstructions(name) A list of all processing instructions that are children of this element.E4XXMLListFunctions.processingInstructions(JSString name) function processingInstructions(name) calls the processingInstructions method of each XML object in this XMLList object passing the optional parameter name (or "*" if it is omitted) and returns an XMList containing the results in order.function replace(propertyName, value) replaces the XML properties of this XML object specified by propertyName with value and returns this XML object.voidE4XXMLFunctions.setLocalName(JSString name) function setLocalName(name) replaces the local name of this XML object with a string constructed from the given name. -
Uses of JSString in org.fife.rsta.ac.js.ecma.api.ecma3
Fields in org.fife.rsta.ac.js.ecma.api.ecma3 declared as JSStringModifier and TypeFieldDescriptionprotected JSStringJSError.messageproperty messageprotected JSStringJSError.nameproperty nameJSString.prototypeproperty prototypeprotected JSStringJSRegExp.sourceproperty sourceMethods in org.fife.rsta.ac.js.ecma.api.ecma3 that return JSStringModifier and TypeMethodDescriptionstatic JSStringJSString.fromCharCode(JSNumber charCode) function fromCharCode(charCode1, ...) create a string from character encodings.Methods in org.fife.rsta.ac.js.ecma.api.ecma3 with parameters of type JSStringModifier and TypeMethodDescriptionstatic JSNumberfunction parse(string) parse a date/time string.Constructors in org.fife.rsta.ac.js.ecma.api.ecma3 with parameters of type JSStringModifierConstructorDescriptionObject Date(datestring)Object Error(message)JSFunction(JSString argument_names, JSString body) Object Function(argument_names..., body)Object RegExp(pattern, attributes)Object String(s) -
Uses of JSString in org.fife.rsta.ac.js.ecma.api.ecma3.functions
Methods in org.fife.rsta.ac.js.ecma.api.ecma3.functions that return JSStringModifier and TypeMethodDescriptionfunction charAt(position) get the nth character from a string.function concat(value1, ...) concatenate stringsfunction decodeURI(uri) unescape characters in a URI.JSGlobalFunctions.decodeURIComponent(JSString s) function decodeURIComponent(s) unescape characters in a URI component.function encodeURI(uri) escape characters in a URI.JSGlobalFunctions.encodeURIComponent(JSString s) function encodeURIComponent(s) escape characters in a URI Component.function escape(s) encode a string.function join(separator) converts each element of the array into a string.function match(regexp) find one or more regular-expression matchesJSGlobalFunctions.parseFloat(JSString s) function parseFloat(s) convert a string to a number.function parseInt(s, radix) convert a string to an integer.function replace(regexp, replaceValue) replace substring(s) matching a regular expression.function slice(start, end) extract a substring.function substring(from, to) return a substring of a string.JSDateFunctions.toDateString()function toDateString() return the date portion of a Date as a string.JSNumberFunctions.toExponential(JSNumber fractionDigits) function toExponential(fractionDigits) format a number using exponential notation.function toFixed(fractionDigits) format a number using fixed-point notation.JSDateFunctions.toLocaleDateString()function toLocaleDateString() return the date portion of a Date as a locally formatted string.JSStringFunctions.toLocaleLowerCase()function toLocaleLowerCase() Converts a string to lower case.JSDateFunctions.toLocaleString()function toLocaleString() convert a Date to a locally formatted string.JSObjectFunctions.toLocaleString()function toLocaleString() return an object localized string representation.JSDateFunctions.toLocaleTimeString()function toLocaleTimeString() return the time portion of a date as a locally formatted string.JSStringFunctions.toLocaleUpperCase()function toLocaleUpperCase() Converts a string to upper case.JSStringFunctions.toLowerCase()function toLowerCase() Converts a string to lower case.JSNumberFunctions.toPrecision(JSNumber fractionDigits) function toPrecision(precision) format the significant digits of a number.JSDateFunctions.toTimeString()function toTimeString() return the time portion of Date as a string.JSStringFunctions.toUpperCase()function toUpperCase() Converts a string to upper case.JSDateFunctions.toUTCString()function toUTCString() convert Date to a string (universal time).function unescape(s) decode an escaped string.Methods in org.fife.rsta.ac.js.ecma.api.ecma3.functions with parameters of type JSStringModifier and TypeMethodDescriptionfunction concat(value1, ...) concatenate stringsfunction decodeURI(uri) unescape characters in a URI.JSGlobalFunctions.decodeURIComponent(JSString s) function decodeURIComponent(s) unescape characters in a URI component.function encodeURI(uri) escape characters in a URI.JSGlobalFunctions.encodeURIComponent(JSString s) function encodeURIComponent(s) escape characters in a URI Component.function escape(s) encode a string.function eval(code) execute JavaScript from a string.function indexOf(searchString, startPosition) search a string.JSStringFunctions.lastIndexOf(JSString searchString, JSNumber startPosition) function lastIndexOf(searchString, startPosition) search a string backward.JSStringFunctions.localeCompare(JSString otherString) function localeCompare(otherString) compare one string to another, using locale-specific ordering.JSGlobalFunctions.parseFloat(JSString s) function parseFloat(s) convert a string to a number.function parseInt(s, radix) convert a string to an integer.function replace(regexp, replaceValue) replace substring(s) matching a regular expression.function split(separator, limit) break a string into an array of strings.function unescape(s) decode an escaped string. -
Uses of JSString in org.fife.rsta.ac.js.ecma.api.ecma5
Subclasses of JSString in org.fife.rsta.ac.js.ecma.api.ecma5Constructors in org.fife.rsta.ac.js.ecma.api.ecma5 with parameters of type JSString