Class JS5Array
- java.lang.Object
-
- org.fife.rsta.ac.js.ecma.api.ecma3.JSArray
-
- org.fife.rsta.ac.js.ecma.api.ecma5.JS5Array
-
- All Implemented Interfaces:
JSArrayFunctions,JSObjectFunctions,JS5ArrayFunctions,JS5ObjectFunctions
- Direct Known Subclasses:
BarProp
public abstract class JS5Array extends JSArray implements JS5ArrayFunctions
Object Array- Since:
- Standard ECMA-262 3rd. Edition
-
-
Field Summary
-
Fields inherited from class org.fife.rsta.ac.js.ecma.api.ecma3.JSArray
constructor, length, prototype
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JSBooleanisArray(JS5Object o)function isArray(o) test whether argument is an array.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma5.functions.JS5ArrayFunctions
every, filter, forEach, indexOf, lastIndexOf, map, reduce, reduceRight, some
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSArrayFunctions
concat, join, pop, push, reverse, shift, slice, sort, splice, unshift
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSObjectFunctions
hasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOf
-
-
-
-
Constructor Detail
-
JS5Array
public JS5Array()
Object Array()- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
-
JS5Array
public JS5Array(JSNumber size)
Object Array(size)- Parameters:
size- The desired number of elements in the array. The returned value has its length field set to size- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
-
-