Uses of Class
org.fife.rsta.ac.js.ecma.api.ecma5.JS5Object
Packages that use JS5Object
Package
Description
-
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 JS5ObjectModifier and TypeMethodDescriptionWindowFunctions.getComputedStyle(Element arg1, JSString arg2) function getComputedStyle(arg1, arg2)Methods in org.fife.rsta.ac.js.ecma.api.client.funtions with parameters of type JS5ObjectModifier and TypeMethodDescriptionvoidWindowFunctions.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 JS5ObjectModifier and TypeMethodDescriptionstatic JS5Objectfunction 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 JS5Objectfunction 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 JS5Objectfunction 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 JS5ObjectModifier and TypeMethodDescriptionstatic JS5Objectfunction 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 JS5Objectfunction 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 JSBooleanfunction 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 JSBooleanfunction isFrozen(o) is an object immutable?static JSBooleanfunction isSealed(o) can properties be added or deleted from an object?static JS5Arrayfunction keys(o) return enumerable property names.static JS5ObjectJS5Object.preventExtensions(JS5Object o) function preventExtensions(o) don't allow new properties on an object.static JS5Objectfunction 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 JS5ObjectModifier and TypeMethodDescriptionJS5ArrayFunctions.reduce(JS5Function f, JS5Object initial) function reduce(f, initial) compute a value from the elements of an array.JS5ArrayFunctions.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 JS5ObjectModifier and TypeMethodDescriptionfunction bind (thisObject, argArray) return a function that invokes this as a method.JS5ArrayFunctions.every(JS5Function predicate, JS5Object o) function every(predicate, o) test whether predicate is true for every element.JS5ArrayFunctions.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.function indexOf(value, start) search an array.JS5ArrayFunctions.lastIndexOf(JS5Object value, JSNumber start) function lastIndexOf(value, start) search backwards through an array.JS5ArrayFunctions.map(JS5Function f, JS5Object o) function map(f, o) compute new array elements from old.JS5ArrayFunctions.reduce(JS5Function f, JS5Object initial) function reduce(f, initial) compute a value from the elements of an array.JS5ArrayFunctions.reduceRight(JS5Function f, JS5Object initial) function reduceRight(f, initial) reduce an array from right-to-left.JS5ArrayFunctions.some(JS5Function predicate, JS5Object o) function some(predicate, o) test whether a predicate is true for any element.