Project Wonder 5.0

er.extensions.foundation
Class ERXArrayUtilities.FlattenOperator

java.lang.Object
  extended by er.extensions.foundation.ERXArrayUtilities.FlattenOperator
All Implemented Interfaces:
com.webobjects.foundation.NSArray.Operator
Enclosing class:
ERXArrayUtilities

public static class ERXArrayUtilities.FlattenOperator
extends java.lang.Object

Define an NSArray.Operator for the key flatten.

This allows for key value paths like:

myArray.valueForKey("@flatten.someOtherPath");

Which in this case would return myArray flattened if myArray is an NSArray of NSArrays (of NSArrays etc) before continuing to process someOtherPath.

See Also:
BaseOperator

Constructor Summary
ERXArrayUtilities.FlattenOperator()
          public empty constructor
 
Method Summary
 java.lang.Object compute(com.webobjects.foundation.NSArray<?> array, java.lang.String keypath)
          Flattens the given array.
 java.lang.Object contents(com.webobjects.foundation.NSArray<?> array, java.lang.String keypath)
          Rather than iterating through the array argument calling valueForKeyPath on each array object, this method operates by calling valueForKeyPath on the array argument instead.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ERXArrayUtilities.FlattenOperator

public ERXArrayUtilities.FlattenOperator()
public empty constructor

Method Detail

compute

public java.lang.Object compute(com.webobjects.foundation.NSArray<?> array,
                                java.lang.String keypath)
Flattens the given array.

Parameters:
array - array to be flattened.
keypath - additional keypath
Returns:
value following keypath for flattened array

contents

public java.lang.Object contents(com.webobjects.foundation.NSArray<?> array,
                                 java.lang.String keypath)
Rather than iterating through the array argument calling valueForKeyPath on each array object, this method operates by calling valueForKeyPath on the array argument instead. This method is used by Wonder operators to chain multiple array operators in a single key path.

Parameters:
array - the array value for the operator
keypath - the keypath to call on the array argument
Returns:
the object value produced by valueForKeyPath, or the array itself if the keypath is empty

Last updated: Tue, Feb 21, 2017 • 05:45 PM CET

Copyright © 2002 – 2007 Project Wonder.