Uses of Class
org.fife.rsta.ac.js.ecma.api.ecma5.JS5Object
-
Packages that use JS5Object Package Description org.fife.rsta.ac.js.ecma.api.client.funtions org.fife.rsta.ac.js.ecma.api.ecma5 org.fife.rsta.ac.js.ecma.api.ecma5.functions -
-
Uses of JS5Object in org.fife.rsta.ac.js.ecma.api.client.funtions
Methods in org.fife.rsta.ac.js.ecma.api.client.funtions that return JS5Object Modifier and Type Method Description JS5ObjectWindowFunctions. getComputedStyle(org.w3c.dom.Element arg1, JSString arg2)function getComputedStyle(arg1, arg2)Methods in org.fife.rsta.ac.js.ecma.api.client.funtions with parameters of type JS5Object Modifier and Type Method Description voidWindowFunctions. clearInterval(JS5Object arg)function clearInterval(arg) Clears a timer set with setInterval()voidWindowFunctions. clearTimeout(JS5Object arg)function clearTimeout(arg) Clears a timer set with setTimeout() -
Uses of JS5Object in org.fife.rsta.ac.js.ecma.api.ecma5
Methods in org.fife.rsta.ac.js.ecma.api.ecma5 that return JS5Object Modifier and Type Method Description static JS5ObjectJS5Object. create(JS5Object proto, JS5Object descriptors)function create(proto, descriptors) create an object with specified prototype and properties.static JS5ObjectJS5Object. defineProperties(JS5Object o, JS5Object descriptors)function defineProperties(o, descriptors) create or configure multiple object properties.static JS5ObjectJS5Object. defineProperty(JS5Object o, JS5String name, JS5Object desc)function defineProperty(o, name, desc) create or configure an object property.static JS5ObjectJS5Object. freeze(JS5Object o)function freeze(o) make an object immutable.static JS5ObjectJS5Object. getOwnPropertyDescriptor(JS5Object o, JS5String name)function getOwnPropertyDescriptor(o, name) query property attributes.static JS5ObjectJS5Object. getPrototypeOf(JS5Object o)function getPrototypeOf(o) return the prototype of an objectstatic JS5ObjectJS5JSON. parse(JS5String s, JS5Function reviver)function parse(s, reviver) parse a JSON-formatted string.static JS5ObjectJS5Object. preventExtensions(JS5Object o)function preventExtensions(o) don't allow new properties on an object.static JS5ObjectJS5Object. seal(JS5Object o)function seal(o) prevent the addition or deletion of properties.static JS5ObjectJS5JSON. stringify(JS5Object o, JS5Function filter, JS5Object indent)function stringify(o, filter, indent) serialize an object, array or primitive value.Methods in org.fife.rsta.ac.js.ecma.api.ecma5 with parameters of type JS5Object Modifier and Type Method Description static JS5ObjectJS5Object. create(JS5Object proto, JS5Object descriptors)function create(proto, descriptors) create an object with specified prototype and properties.static JS5ObjectJS5Object. defineProperties(JS5Object o, JS5Object descriptors)function defineProperties(o, descriptors) create or configure multiple object properties.static JS5ObjectJS5Object. defineProperty(JS5Object o, JS5String name, JS5Object desc)function defineProperty(o, name, desc) create or configure an object property.static JS5ObjectJS5Object. freeze(JS5Object o)function freeze(o) make an object immutable.static JS5ObjectJS5Object. getOwnPropertyDescriptor(JS5Object o, JS5String name)function getOwnPropertyDescriptor(o, name) query property attributes.static JS5ArrayJS5Object. getOwnPropertyNames(JS5Object o)function getOwnPropertyNames(o) return the names of non-inherited properties.static JS5ObjectJS5Object. getPrototypeOf(JS5Object o)function getPrototypeOf(o) return the prototype of an objectstatic JSBooleanJS5Array. isArray(JS5Object o)function isArray(o) test whether argument is an array.static JSBooleanJS5Object. isExtensible(JS5Object o)function isExtensible(o) can new properties be added to an object?static JSBooleanJS5Object. isFrozen(JS5Object o)function isFrozen(o) is an object immutable?static JSBooleanJS5Object. isSealed(JS5Object o)function isSealed(o) can properties be added or deleted from an object?static JS5ArrayJS5Object. keys(JS5Object o)function keys(o) return enumerable property names.static JS5ObjectJS5Object. preventExtensions(JS5Object o)function preventExtensions(o) don't allow new properties on an object.static JS5ObjectJS5Object. seal(JS5Object o)function seal(o) prevent the addition or deletion of properties.static JS5ObjectJS5JSON. stringify(JS5Object o, JS5Function filter, JS5Object indent)function stringify(o, filter, indent) serialize an object, array or primitive value. -
Uses of JS5Object in org.fife.rsta.ac.js.ecma.api.ecma5.functions
Methods in org.fife.rsta.ac.js.ecma.api.ecma5.functions that return JS5Object Modifier and Type Method Description JS5ObjectJS5ArrayFunctions. reduce(JS5Function f, JS5Object initial)function reduce(f, initial) compute a value from the elements of an array.JS5ObjectJS5ArrayFunctions. reduceRight(JS5Function f, JS5Object initial)function reduceRight(f, initial) reduce an array from right-to-left.Methods in org.fife.rsta.ac.js.ecma.api.ecma5.functions with parameters of type JS5Object Modifier and Type Method Description JS5FunctionJS5FunctionFunctions. bind(JS5Object thisObject, JS5Array argArray)function bind (thisObject, argArray) return a function that invokes this as a method.JSBooleanJS5ArrayFunctions. every(JS5Function predicate, JS5Object o)function every(predicate, o) test whether predicate is true for every element.JS5ArrayJS5ArrayFunctions. filter(JS5Function predicate, JS5Object o)function filter(predicate, o) return array elements that pass a predicate.voidJS5ArrayFunctions. forEach(JS5Function f, JS5Object o)function forEach(f, o) invoke a function for each array element.JSNumberJS5ArrayFunctions. indexOf(JS5Object value, JSNumber start)function indexOf(value, start) search an array.JSNumberJS5ArrayFunctions. lastIndexOf(JS5Object value, JSNumber start)function lastIndexOf(value, start) search backwards through an array.JS5ArrayJS5ArrayFunctions. map(JS5Function f, JS5Object o)function map(f, o) compute new array elements from old.JS5ObjectJS5ArrayFunctions. reduce(JS5Function f, JS5Object initial)function reduce(f, initial) compute a value from the elements of an array.JS5ObjectJS5ArrayFunctions. reduceRight(JS5Function f, JS5Object initial)function reduceRight(f, initial) reduce an array from right-to-left.JSBooleanJS5ArrayFunctions. some(JS5Function predicate, JS5Object o)function some(predicate, o) test whether a predicate is true for any element.
-