Home | History | Annotate | Download | only in filterfw

Lines Matching defs:array

19 import java.lang.reflect.Array;
26 * This returns 1, if the Frame value is null, or if the value is not an array.
35 return Array.getLength(super.getValue());
40 * Returns the values in the Frame as an array.
42 * Note, that this may be called on Frames that have a non-array object assigned to them. In
43 * that case, this method will wrap the object in an array and return that. This way, filters
46 * @return The array of values in this frame.
53 // Allow reading a single as an array.
54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1);
55 array[0] = value;
56 return array;
63 * In case the value is null or not an array, the index must be 0, and the value itself is
78 return Array.get(value, index);
99 * Assign the array of values to the frame.
101 * You may assign null or a non-array object, which are interpreted as a 1-length array.
112 * In case the held value is not an array, the index must be 0, and the object will be replaced
128 Array.set(curValue, index, value);