Modifier and Type | Method and Description |
---|---|
NSArray |
_JR_IDEProjectWOLips.frameworkBundlePaths() |
NSArray |
_JR_IDEProjectWOLips.frameworkBundlePathURLs() |
Modifier and Type | Method and Description |
---|---|
NSArray |
WODisplayGroup.allObjects() |
NSArray |
WODisplayGroup.allQualifierOperators() |
NSArray |
WODisplayGroup.displayedObjects() |
NSArray |
WODisplayGroup.Delegate.displayGroupDisplayArrayForObjects(WODisplayGroup paramWODisplayGroup,
NSArray paramNSArray) |
NSArray<String> |
WODisplayGroup.localKeys() |
NSArray |
WODisplayGroup.relationalQualifierOperators() |
NSArray |
WODisplayGroup.selectedObjects() |
NSArray |
WODisplayGroup.selectionIndexes() |
NSArray<EOSortOrdering> |
WODisplayGroup.sortOrderings() |
NSArray |
WODisplayGroup.stringQualifierOperators() |
Modifier and Type | Method and Description |
---|---|
void |
WODisplayGroup.Delegate.displayGroupDidFetchObjects(WODisplayGroup paramWODisplayGroup,
NSArray paramNSArray) |
NSArray |
WODisplayGroup.Delegate.displayGroupDisplayArrayForObjects(WODisplayGroup paramWODisplayGroup,
NSArray paramNSArray) |
boolean |
WODisplayGroup.Delegate.displayGroupShouldChangeSelectionToIndexes(WODisplayGroup paramWODisplayGroup,
NSArray paramNSArray) |
boolean |
WODisplayGroup.selectObjectsIdenticalTo(NSArray objectSelection) |
boolean |
WODisplayGroup.selectObjectsIdenticalToSelectFirstOnNoMatch(NSArray objectSelection,
boolean selectFirstOnNoMatch) |
void |
WODisplayGroup.setLocalKeys(NSArray<String> newKeySet) |
void |
WODisplayGroup.setObjectArray(NSArray array) |
void |
WODisplayGroup.setSelectedObjects(NSArray objects) |
boolean |
WODisplayGroup.setSelectionIndexes(NSArray s) |
void |
WODisplayGroup.setSortOrderings(NSArray<EOSortOrdering> keySortOrderArray) |
Modifier and Type | Method and Description |
---|---|
static NSArray |
WOHostUtilities.getLocalHosts() |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERXModel.availablePrototypeAttributeNames()
Overridden to use our prototype creation method if
er.extensions.ERXModel.useExtendedPrototypes=true . |
NSArray<EOAttribute> |
ERXEntity.classAttributes() |
NSArray<EORelationship> |
ERXEntity.classRelationships() |
NSArray<EOAdaptorOperation> |
ERXEntityDependencyOrderingDelegate.databaseContextWillPerformAdaptorOperations(EODatabaseContext aDatabaseContext,
NSArray<EOAdaptorOperation> adaptorOperations,
EOAdaptorChannel adaptorChannel)
EODatabaseContext.Delegate method to order a list of adaptor operations.
|
Modifier and Type | Method and Description |
---|---|
protected Object |
EOAttribute._normalizeDefinitionPath(Object definition,
NSArray attributePath) |
protected void |
EOAttribute._removeFromEntityArraySelector(NSArray oldArray,
NSSelector sel) |
static EOFetchSpecification |
ERXEOAccessHelper.adjustPrefetching(EODatabaseContext dbc,
EOFetchSpecification fetchSpec,
String relationshipName,
NSArray sourceObjects,
EOEditingContext context)
Helper to fix prefetching fetch spec to abstract entities.
|
NSArray<EOAdaptorOperation> |
ERXEntityDependencyOrderingDelegate.databaseContextWillPerformAdaptorOperations(EODatabaseContext aDatabaseContext,
NSArray<EOAdaptorOperation> adaptorOperations,
EOAdaptorChannel adaptorChannel)
EODatabaseContext.Delegate method to order a list of adaptor operations.
|
Constructor and Description |
---|
ERXAdaptorOpComparator(NSArray entityNameOrdering) |
Modifier and Type | Class and Description |
---|---|
class |
_EOCheapCopyArray
Reimplementation which fixes a bug in NSArray, where the iterator methods won't trigger the fault.
|
class |
_EOCheapCopyMutableArray
Reimp of the supplied class which will have some optimizations.
|
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
EOCustomObject.allPropertyKeys() |
NSArray<String> |
EOCustomObject.attributeKeys() |
NSArray |
_EOCheapCopyMutableArray.immutableClone() |
NSArray |
_EOCheapCopyArray.immutableClone() |
NSArray<String> |
EOCustomObject.toManyRelationshipKeys() |
NSArray<String> |
EOCustomObject.toOneRelationshipKeys() |
Modifier and Type | Method and Description |
---|---|
void |
_EOCheapCopyArray._setArray(NSArray otherArray) |
void |
_EOCheapCopyMutableArray.setArray(NSArray otherArray) |
NSDictionary |
EOCustomObject.valuesForKeys(NSArray keys) |
Constructor and Description |
---|
_EOCheapCopyArray(NSArray otherArray) |
_EOCheapCopyMutableArray(NSArray otherArray) |
Modifier and Type | Class and Description |
---|---|
class |
NSMutableArray<E>
Bugfix reimplementation of NSMutableArray.
|
Modifier and Type | Field and Description |
---|---|
static NSArray |
NSArray.EmptyArray |
Modifier and Type | Method and Description |
---|---|
NSArray<K> |
NSDictionary.allKeys() |
NSArray<K> |
NSDictionary.allKeysForObject(Object object) |
NSArray |
_NSWeakMutableArray.allObjects() |
NSArray<E> |
NSSet.allObjects() |
NSArray<V> |
NSDictionary.allValues() |
NSArray<E> |
NSArray.arrayByAddingObject(E object) |
NSArray<E> |
NSArray.arrayByAddingObjectsFromArray(NSArray<? extends E> otherArray) |
static NSArray<String> |
NSArray.componentsSeparatedByString(String string,
String separator) |
static <T> NSArray<T> |
NSArray.emptyArray() |
NSArray<E> |
NSMutableArray.immutableClone() |
NSArray<E> |
NSArray.immutableClone() |
NSArray<V> |
NSDictionary.objectsForKeys(NSArray<? extends K> keys,
V notFoundMarker) |
static <E> NSArray<E> |
NSArray.of()
Returns an immutable empty
NSArray . |
static <E> NSArray<E> |
NSArray.of(E... elements)
Returns an immutable
NSArray containing an arbitrary number of elements. |
static <E> NSArray<E> |
NSArray.of(E element)
Returns an immutable
NSArray containing one element. |
static NSArray<String> |
NSArray.operatorNames() |
NSArray<E> |
NSArray.sortedArrayUsingComparator(NSComparator comparator) |
NSArray |
NSArray.sortedArrayUsingSelector(NSSelector selector)
Deprecated.
Method sortedArrayUsingSelector is deprecated
|
NSArray<E> |
NSArray.subarrayWithRange(NSRange range) |
<T> NSArray<T> |
NSArray.valueForKey(ERXKey<T> erxKey)
A type-safe wrapper for
valueForKey(String) that automatically
does the following (in order) to the resulting array prior to returning
it:
remove
NSKeyValueCoding.Null elements
flatten all elements that
are arrays (Only if ERXKey.isToManyRelationship()
returns true , which can only possibly happen if
ERXKey.type() has been set.)
remove all duplicate
objects
|
<T> NSArray<T> |
NSArray.valueForKey(ERXKey<T> erxKey,
boolean removeNulls,
boolean distinct,
boolean flatten)
A type-safe wrapper for
valueForKeyPath(String) that calls
valueForKeyPath(erxKey.key()) and attempts to cast the result to
NSArray<T> . |
<T> NSArray<T> |
NSArray.valueForKeyPath(ERXKey<T> erxKey)
A type-safe wrapper for
valueForKeyPath(String) that simply
calls valueForKeyPath(erxKey.key()) and attempts to cast the
result to NSArray<T> . |
Modifier and Type | Method and Description |
---|---|
void |
NSMutableSet.addObjectsFromArray(NSArray<? extends E> array) |
void |
NSMutableArray.addObjectsFromArray(NSArray<? extends E> otherArray) |
NSArray<E> |
NSArray.arrayByAddingObjectsFromArray(NSArray<? extends E> otherArray) |
Object |
NSArray._AvgNumberOperator.compute(NSArray<?> values,
String keyPath) |
Object |
NSArray._SumNumberOperator.compute(NSArray<?> values,
String keyPath) |
Object |
NSArray._MinOperator.compute(NSArray<?> values,
String keyPath) |
Object |
NSArray._MaxOperator.compute(NSArray<?> values,
String keyPath) |
Object |
NSArray._CountOperator.compute(NSArray<?> values,
String keyPath) |
Object |
NSArray.Operator.compute(NSArray<?> nsarray,
String s) |
E |
NSArray.firstObjectCommonWithArray(NSArray<?> otherArray) |
boolean |
NSArray.isEqualToArray(NSArray<?> otherArray) |
NSArray<V> |
NSDictionary.objectsForKeys(NSArray<? extends K> keys,
V notFoundMarker) |
void |
NSMutableDictionary.removeObjectsForKeys(NSArray<? extends K> keys) |
void |
NSMutableArray.removeObjectsInArray(NSArray<?> otherArray) |
void |
NSMutableArray.replaceObjectsInRange(NSRange range,
NSArray<? extends E> otherArray,
NSRange otherRange) |
void |
NSMutableArray.setArray(NSArray<? extends E> otherArray) |
Constructor and Description |
---|
NSArray(NSArray<? extends E> otherArray) |
NSDictionary(NSArray<? extends V> objects,
NSArray<? extends K> keys) |
NSDictionary(NSArray<? extends V> objects,
NSArray<? extends K> keys) |
NSMutableArray(NSArray<? extends E> otherArray) |
NSMutableDictionary(NSArray<? extends V> objects,
NSArray<? extends K> keys) |
NSMutableDictionary(NSArray<? extends V> objects,
NSArray<? extends K> keys) |
NSMutableSet(NSArray<? extends E> objects) |
NSSet(NSArray<? extends E> objects) |
Modifier and Type | Method and Description |
---|---|
String |
_OpenBasePlugIn.OpenBaseSynchronizationFactory._alterPhraseCoercingColumnsWithNames(NSArray columnNames,
NSDictionary updates,
NSArray entityGroup,
com.webobjects.eoaccess.synchronization.EOSchemaGenerationOptions options) |
String |
_OpenBasePlugIn.OpenBaseSynchronizationFactory._alterPhraseCoercingColumnsWithNames(NSArray columnNames,
NSDictionary updates,
NSArray entityGroup,
com.webobjects.eoaccess.synchronization.EOSchemaGenerationOptions options) |
String |
_OpenBasePlugIn.OpenBaseSynchronizationFactory._alterPhraseDeletingColumnsWithNames(NSArray columnNames,
NSArray entityGroup,
com.webobjects.eoaccess.synchronization.EOSchemaGenerationOptions options) |
String |
_OpenBasePlugIn.OpenBaseSynchronizationFactory._alterPhraseDeletingColumnsWithNames(NSArray columnNames,
NSArray entityGroup,
com.webobjects.eoaccess.synchronization.EOSchemaGenerationOptions options) |
NSArray |
DB2SynchronizationFactory._foreignKeyConstraintStatementsForEntityGroup(NSArray group) |
NSArray<EOSQLExpression> |
PostgresqlSynchronizationFactory._foreignKeyConstraintStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
String |
_OpenBasePlugIn.OpenBaseExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause) |
String |
_OpenBasePlugIn.OpenBaseExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause) |
String |
PostgresqlExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
PostgresqlExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
_MySQLPlugIn.MySQLExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overriding to
add LIMIT clause if _fetchLimit > 0
support MySQL JOIN syntax (similar syntax to what PostgreSQL PlugIn generates)
|
String |
_MySQLPlugIn.MySQLExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overriding to
add LIMIT clause if _fetchLimit > 0
support MySQL JOIN syntax (similar syntax to what PostgreSQL PlugIn generates)
|
String |
_H2PlugIn.H2Expression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
_H2PlugIn.H2Expression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
_FrontBasePlugIn.FrontbaseExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
_FrontBasePlugIn.FrontbaseExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
EROracleExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overriden to handle correct placements of join conditions and to handle
DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
EROracleExpression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overriden to handle correct placements of join conditions and to handle
DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
DB2Expression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
DB2Expression.assembleSelectStatementWithAttributes(NSArray attributes,
boolean lock,
EOQualifier qualifier,
NSArray fetchOrder,
String selectString,
String columnList,
String tableList,
String whereClause,
String joinClause,
String orderByClause,
String lockClause)
Overridden to handle correct placements of join conditions and
to handle DISTINCT fetches with compareCaseInsensitiveA(De)scending sort orders.
|
String |
EROracleExpressionDelegate.constraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns) |
String |
EROracleExpressionDelegate.constraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns) |
String |
EROracleExpression.Delegate.constraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns)
Returns the constraint name for the given relationship.
|
String |
EROracleExpression.Delegate.constraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns)
Returns the constraint name for the given relationship.
|
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.createIndexStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.createIndexStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups) |
NSArray |
DB2SynchronizationFactory.createTableStatementsForEntityGroup(NSArray entityGroup)
Quote table name if necessary
|
NSArray<EOSQLExpression> |
PostgresqlSynchronizationFactory.createTableStatementsForEntityGroup(NSArray<EOEntity> entityGroup)
Quote table name if necessary
|
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.createTableStatementsForEntityGroup(NSArray<EOEntity> entityGroup)
エンティティ・グループの SQL を生成します
|
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.createTableStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups)
複数のエンティティ・グループス作成 SQL を生成します。
|
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroup(NSArray entityGroup) |
NSArray |
DB2SynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroup(NSArray entityGroup)
Generates the DB2-specific SQL statements to drop the primary key
support.
|
NSArray<EOSQLExpression> |
PostgresqlSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroup(NSArray<EOEntity> entityGroup)
Generates the PostgreSQL-specific SQL statements to drop the primary key
support.
|
NSArray<EOSQLExpression> |
_H2PlugIn.H2SynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroups(NSArray entityGroups) |
NSArray<EOSQLExpression> |
_DerbyPlugIn.DerbySynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroups(NSArray entityGroups) |
NSArray<EOSQLExpression> |
_MySQLPlugIn.MySQLSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups) |
NSArray |
DB2SynchronizationFactory.dropTableStatementsForEntityGroup(NSArray entityGroup)
Generates the DB2-specific SQL statements to drop tables.
|
NSArray<EOSQLExpression> |
PostgresqlSynchronizationFactory.dropTableStatementsForEntityGroup(NSArray<EOEntity> entityGroup)
Generates the PostgreSQL-specific SQL statements to drop tables.
|
NSArray<EOSQLExpression> |
_H2PlugIn.H2SynchronizationFactory.dropTableStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.dropTableStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray<EOSQLExpression> |
_DerbyPlugIn.DerbySynchronizationFactory.dropTableStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.dropTableStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups) |
void |
PostgresqlExpression.prepareConstraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns)
Overrides the parent implementation to add an
INITIALLY DEFERRED to the generated statement. |
void |
PostgresqlExpression.prepareConstraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns)
Overrides the parent implementation to add an
INITIALLY DEFERRED to the generated statement. |
void |
EROracleExpression.prepareConstraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns) |
void |
EROracleExpression.prepareConstraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns) |
void |
DB2Expression.prepareConstraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns)
cug: Also handles identifier quoting now
|
void |
DB2Expression.prepareConstraintStatementForRelationship(EORelationship relationship,
NSArray sourceColumns,
NSArray destinationColumns)
cug: Also handles identifier quoting now
|
void |
PostgresqlExpression.prepareSelectExpressionWithAttributes(NSArray<EOAttribute> attributes,
boolean lock,
EOFetchSpecification fetchSpec)
Overridden so we can get the fetch limit from the fetchSpec.
|
void |
_MySQLPlugIn.MySQLExpression.prepareSelectExpressionWithAttributes(NSArray<EOAttribute> attributes,
boolean lock,
EOFetchSpecification fetchSpec)
Overriding super here so we can grab a fetch range or fetch limit if specified in the EOFetchSpecification.
|
void |
_H2PlugIn.H2Expression.prepareSelectExpressionWithAttributes(NSArray<EOAttribute> attributes,
boolean lock,
EOFetchSpecification fetchSpec)
Overridden so we can get the fetch limit from the fetchSpec.
|
void |
DB2Expression.prepareSelectExpressionWithAttributes(NSArray<EOAttribute> attributes,
boolean lock,
EOFetchSpecification eofetchspecification)
Overridden so we can get the fetch limit from the fetchSpec.
|
void |
_OpenBasePlugIn.OpenBaseExpression.prepareSelectExpressionWithAttributes(NSArray nsarray,
boolean flag,
EOFetchSpecification eofetchspecification) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.primaryKeyConstraintStatementsForEntityGroup(NSArray entityGroup) |
NSArray |
DB2SynchronizationFactory.primaryKeyConstraintStatementsForEntityGroup(NSArray entityGroup)
Generates the DB2-specific SQL statements to enforce primary key
constraints.
|
NSArray<EOSQLExpression> |
PostgresqlSynchronizationFactory.primaryKeyConstraintStatementsForEntityGroup(NSArray<EOEntity> entityGroup)
Generates the PostgreSQL-specific SQL statements to enforce primary key
constraints.
|
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.primaryKeyConstraintStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.primaryKeyConstraintStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.primaryKeySupportStatementsForEntityGroup(NSArray entityGroup) |
NSArray |
DB2SynchronizationFactory.primaryKeySupportStatementsForEntityGroup(NSArray entityGroup)
Generates the DB2-specific SQL statements to create the primary
key support.
|
NSArray<EOSQLExpression> |
PostgresqlSynchronizationFactory.primaryKeySupportStatementsForEntityGroup(NSArray<EOEntity> entityGroup)
Generates the PostgreSQL-specific SQL statements to create the primary
key support.
|
NSArray<EOSQLExpression> |
_H2PlugIn.H2SynchronizationFactory.primaryKeySupportStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.primaryKeySupportStatementsForEntityGroup(NSArray<EOEntity> entityGroup) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.primaryKeySupportStatementsForEntityGroups(NSArray entityGroups) |
NSArray<EOSQLExpression> |
_DerbyPlugIn.DerbySynchronizationFactory.primaryKeySupportStatementsForEntityGroups(NSArray entityGroups) |
NSArray<EOSQLExpression> |
_MySQLPlugIn.MySQLSynchronizationFactory.primaryKeySupportStatementsForEntityGroups(NSArray<NSArray<EOEntity>> entityGroups) |
String |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.schemaCreationScriptForEntities(NSArray<EOEntity> arg0,
NSDictionary<String,String> arg1) |
String |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.schemaCreationScriptForEntities(NSArray<EOEntity> allEntities,
NSDictionary<String,String> options) |
String |
PostgresqlSynchronizationFactory.schemaCreationScriptForEntities(NSArray allEntities,
NSDictionary options) |
String |
DB2SynchronizationFactory.schemaCreationScriptForEntities(NSArray allEntities,
NSDictionary options) |
NSArray<EOSQLExpression> |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.schemaCreationStatementsForEntities(NSArray<EOEntity> arg0,
NSDictionary<String,String> arg1) |
NSArray<EOSQLExpression> |
_FrontBasePlugIn.FrontbaseSynchronizationFactory.schemaCreationStatementsForEntities(NSArray<EOEntity> entities,
NSDictionary<String,String> options)
Eclipse の EntityModeler でエンティティを作成時に使用されるメソッド。
SQL 生成をクリックするとここで呼び出される
|
NSArray |
PostgresqlSynchronizationFactory.schemaCreationStatementsForEntities(NSArray allEntities,
NSDictionary options) |
NSArray |
DB2SynchronizationFactory.schemaCreationStatementsForEntities(NSArray allEntities,
NSDictionary options) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.statementsToDropForeignKeyConstraintsOnEntityGroups(NSArray entityGroups,
NSDictionary changes,
NSDictionary options) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.statementsToDropPrimaryKeyConstraintsOnEntityGroups(NSArray entityGroups,
com.webobjects.eoaccess.synchronization.EOSchemaSynchronizationModelChanges changes,
com.webobjects.eoaccess.synchronization.EOSchemaGenerationOptions options) |
NSArray |
_OpenBasePlugIn.OpenBaseSynchronizationFactory.statementsToImplementPrimaryKeyConstraintsOnEntityGroups(NSArray entityGroups,
com.webobjects.eoaccess.synchronization.EOSchemaSynchronizationModelChanges changes,
com.webobjects.eoaccess.synchronization.EOSchemaGenerationOptions options) |
Modifier and Type | Field and Description |
---|---|
static NSArray<Object> |
MObject.hostTypeArray |
static NSArray<Object> |
MObject.loadSchedulerArray
Useful Statics
|
static NSArray<Object> |
MObject.loadSchedulerArrayValues |
static NSArray<Integer> |
MObject.schedulingIntervalArray |
static NSArray<Object> |
MObject.schedulingTypeArray |
static NSArray<String> |
MObject.timeOfDayArray |
static NSArray<Object> |
MObject.urlVersionArray |
static NSArray<String> |
MObject.weekArray |
Modifier and Type | Method and Description |
---|---|
NSArray |
MInstance.additionalArgumentsAsArray()
Command Line Arguments *********
|
NSArray |
MHost.applicationArray() |
NSArray |
MInstance.commandLineArgumentsAsArray() |
NSArray<MHost> |
MApplication.hostArray() |
NSArray<MInstance> |
MApplication.instanceArray() |
NSArray |
MSiteConfig.instancesWithHostName(String host) |
NSArray<MInstance> |
MApplication.runningInstances_M() |
Modifier and Type | Method and Description |
---|---|
void |
MSiteConfig._initApplicationsWithArray(NSArray anArray) |
void |
MSiteConfig._initHostsWithArray(NSArray anArray) |
void |
MSiteConfig._initInstancesWithArray(NSArray anArray) |
void |
MSiteConfig.removeInstances_M(MApplication application,
NSArray<MInstance> instances) |
static NSMutableArray |
NSDictionary_Extensions.replaceSpaceWithUnderscore(NSArray anArray) |
static NSMutableArray |
NSDictionary_Extensions.replaceUnderscoreWithSpace(NSArray anArray) |
static WOResponse[] |
MHost.sendRequestToWotaskdArray(NSData content,
NSArray wotaskdArray,
boolean willChange)
Communications Goop *********
|
Modifier and Type | Field and Description |
---|---|
protected NSArray |
WODictionaryRepetition._keyList |
protected NSArray |
WOToOneRelationship._privateList |
protected NSArray |
WOToManyRelationship._privateList |
protected NSArray |
WOToManyRelationship._privateSelections |
protected NSArray<String> |
WOExceptionPage._reasonLines |
protected NSArray |
WOSimpleArrayDisplay._subList |
protected NSArray |
WOTabPanel._tabs |
NSArray |
WOEventDisplayPage.events |
NSArray |
WOSimpleArrayDisplay.list |
NSArray |
WOEventDisplayPage.selectionPath |
NSArray |
WOStatsPage.sessionStats |
Modifier and Type | Method and Description |
---|---|
protected NSArray |
WOExceptionParser._ignoredPackages() |
protected NSArray |
WOToOneRelationship._privateList() |
protected NSArray |
WOToManyRelationship._privateList() |
NSArray |
WOToManyRelationship._privateSelections() |
protected NSArray<EOSortOrdering> |
WXSortOrder._sortOrderingArray() |
NSArray |
WOEventDisplayPage.childrenForEvent(EOEvent event) |
NSArray |
WOEventDisplayPage.currentEventChildren() |
NSArray |
WOEventSetupPage.currentEventDescriptions() |
NSArray |
WOEventDisplayPage.filterEvents(NSArray evs,
int level) |
NSArray |
WODictionaryRepetition.keyList() |
NSArray |
WOSimpleArrayDisplay.list() |
NSArray<String> |
WOExceptionPage.reasonLines() |
NSArray |
WOEventSetupPage.registeredEventClasses() |
NSArray |
WOEventDisplayPage.rootEventList() |
NSArray |
WOToManyRelationship.selections() |
NSArray |
WOExceptionParser.stackTrace() |
NSArray |
WOSimpleArrayDisplay.subList() |
NSArray |
WOTabPanel.tabs() |
NSArray |
WOToOneRelationship.theList() |
NSArray |
WOToManyRelationship.theList() |
Modifier and Type | Method and Description |
---|---|
protected void |
WOExceptionParser._verifyPackageForLine(WOParsedErrorLine line,
NSArray packages) |
NSArray |
WOEventDisplayPage.filterEvents(NSArray evs,
int level) |
void |
WOToOneRelationship.set_privateList(NSArray aValue) |
void |
WOToManyRelationship.set_privateList(NSArray aValue) |
void |
WOToManyRelationship.set_privateSelections(NSArray aValue) |
void |
WOToManyRelationship.setSelections(NSArray aValue) |
void |
WOToOneRelationship.setTheList(NSArray aValue) |
void |
WOToManyRelationship.updateSourceObject(NSArray newValues) |
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
AjaxFlexibleFileUpload._ajaxUploadData()
Builds the array of required additional AjaxUpload data items (sessionIdKey, id).
|
protected NSArray<String> |
AjaxFlexibleFileUpload._ajaxUploadLabels()
Builds an array of localized label strings
|
protected NSArray<String> |
AjaxFlexibleFileUpload._ajaxUploadOptions()
Builds the array of AjaxUpload options
|
protected abstract NSArray |
AjaxTreeModel.WrapperNode._childrenTreeNodes() |
protected NSArray<String> |
AjaxFlexibleFileUpload._options()
Builds an array of AFU options
|
static <T> NSArray<T> |
AjaxUtils.arrayValueForAssociation(WOComponent component,
WOAssociation association)
Returns the array bound to the given association.
|
static <T> NSArray<T> |
AjaxUtils.arrayValueForBinding(WOComponent component,
String bindingName)
Returns the array bound to the given binding name.
|
static <T> NSArray<T> |
AjaxUtils.arrayValueForObject(Object value)
Returns the array for the given object.
|
abstract NSArray |
AjaxGridNavBar.batchSizes() |
NSArray |
AjaxTreeModel.WrapperNode.childrenTreeNodes() |
NSArray |
AjaxTreeModel.childrenTreeNodes(Object node) |
NSArray |
AjaxTreeModel.Delegate.childrenTreeNodes(Object node) |
NSArray<String> |
AjaxDatePicker.dayNames() |
NSArray |
AjaxSelectionList.list() |
NSArray<String> |
AjaxDatePicker.monthNames() |
NSArray |
AjaxTree.nodes() |
Modifier and Type | Method and Description |
---|---|
static NSMutableDictionary<String,String> |
AjaxOption.createAjaxOptionsDictionary(NSArray<AjaxOption> ajaxOptions,
WOComponent component) |
static NSMutableDictionary<String,String> |
AjaxOption.createAjaxOptionsDictionary(NSArray<AjaxOption> ajaxOptions,
WOComponent component,
NSDictionary<String,? extends WOAssociation> associations) |
static void |
AjaxGrid.updateDisplayGroupSort(WODisplayGroup dg,
NSArray sortConfig)
Updates sort orders on the display group.
|
Modifier and Type | Field and Description |
---|---|
protected static NSMutableDictionary<String,NSArray<String>> |
EOEnterpriseObjectSerializer.includedRelationshipNames |
protected static NSMutableDictionary<String,NSArray<String>> |
EOEnterpriseObjectSerializer.readableAttributeNames |
protected static NSMutableDictionary<String,NSArray<String>> |
EOEnterpriseObjectSerializer.writableAttributeNames |
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
EOEnterpriseObjectSerializer._includedRelationshipNames(EOEnterpriseObject eo)
Override to return the appropriate relationship names.
|
protected NSArray<String> |
EOEnterpriseObjectSerializer._readableAttributeNames(EOEnterpriseObject eo)
Override to return the appropriate attribute names.
|
protected NSArray<String> |
EOEnterpriseObjectSerializer._writableAttributeNames(EOEnterpriseObject eo)
Override to return the appropriate attribute names.
|
static NSArray<String> |
EOEnterpriseObjectSerializer.includedRelationshipNames(EOEnterpriseObject source)
Returns an array of relationships on this EO that should be included in its marshalled output as
the actual destination objects rather than just faults.
|
static NSArray<String> |
EOEnterpriseObjectSerializer.readableAttributeNames(EOEnterpriseObject source)
Returns an array of attribute names from the EOEntity of source that should be marshalled to the client.
|
static NSArray<String> |
EOEnterpriseObjectSerializer.writableAttributeNames(EOEnterpriseObject source)
Returns an array of attribute names from the EOEntity of source that should be marshalled from the client.
|
Modifier and Type | Method and Description |
---|---|
NSArray<Object> |
MTStyledPopUpButton.list() |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERDragAndDropUpload.accept() |
protected NSArray<String> |
ERDragAndDropUpload.additionalJavascriptFiles() |
Modifier and Type | Method and Description |
---|---|
NSArray<ERXModelVersion> |
ERAttachmentMigration.modelDependencies() |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERMimeType.extensions()
Returns the list of extensions that map to this mime type.
|
NSArray<String> |
ERGlobMimeType.extensions() |
Constructor and Description |
---|
ERMimeType(String name,
String mimeType,
String uti,
NSArray<String> extensions)
Constructs an ERMimeType.
|
Modifier and Type | Method and Description |
---|---|
protected EOFetchSpecification |
Bug.BugClazz.newFetchSpecification(EOQualifier qualifier,
NSArray sorting) |
void |
People.setPreferences(NSArray array) |
Modifier and Type | Method and Description |
---|---|
NSArray<ERXModelVersion> |
BugTracker1.modelDependencies() |
NSArray<ERXModelVersion> |
BugTracker0.modelDependencies() |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERSimpleEvent.repeatDaysOfMonth() |
NSArray |
ERCalendarEvent.repeatDaysOfMonth()
Return an array of
Integer indicating the days
within a month, at which the event repeats, or
null for not restricting repeating
to certain days. |
Modifier and Type | Method and Description |
---|---|
void |
ERPublishCalendarPage.addEventsFromArray(NSArray eventsArray)
Adds an array of events to the calendar.
|
void |
ERPublishCalendarPage.removeEventsInArray(NSArray eventsArray)
Removes an array of previously added events from the calendar.
|
Modifier and Type | Method and Description |
---|---|
NSArray |
ERCNConfiguration.changeTypesToPublish() |
NSArray |
ERCNConfiguration.changeTypesToSubscribe() |
NSArray |
ERCNConfiguration.entitiesNotToSynchronize() |
Modifier and Type | Method and Description |
---|---|
NSDictionary |
ERCNSnapshot.globalIDsGroupedByEntity(NSArray objects) |
NSDictionary |
ERCNSnapshot.snapshotsGroupedByEntity(NSArray objects) |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERCoreBusinessLogic._emailsForProblemRecipients
caches the email addresses to send to in the case of problems
|
NSArray |
ERCMailableExceptionPage._reasonLines |
Modifier and Type | Method and Description |
---|---|
NSArray<ERCMessageAttachment> |
_ERCMailMessage.attachments() |
NSArray |
ERCMailMessage.bccAddressesAsArray() |
NSArray |
ERCMailMessage.ccAddressesAsArray() |
NSArray |
ERCoreBusinessLogic.emailsForProblemRecipients()
Gets the array of email addresses to send emails
about problems to.
|
NSArray |
ERCListHelpText.keys() |
NSArray |
ERCoreUserInterface.preferences() |
protected NSArray |
ERCoreUserPreferences.preferences(EOEditingContext ec) |
NSArray |
ERCPreference.ERCPreferenceClazz.preferencesWithKey(EOEditingContext ec,
String key) |
NSArray |
ERCMailableExceptionPage.reasonLines() |
NSArray |
ERCStatic.ERCStaticClazz.staticsForKey(EOEditingContext ec,
String key) |
NSArray |
ERCMailMessage.toAddressesAsArray() |
NSArray<ERCPreference> |
ERCPreference.ERCPreferenceClazz.userPrefsWithKeyId(EOEditingContext ec,
String key,
Number id) |
Modifier and Type | Method and Description |
---|---|
static String |
ERCMailDelivery.commaSeparatedListFromArray(NSArray a)
Utilitiy method used to break an array of email addresses
down into a comma separated list.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
String plainTextComponentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
String plainTextComponentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
String plainTextComponentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
WOComponent plainTextComponent,
EOEditingContext ec)
Composes a mail message from previously instantiated components.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
WOComponent plainTextComponent,
EOEditingContext ec)
Composes a mail message from previously instantiated components.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
WOComponent plainTextComponent,
EOEditingContext ec)
Composes a mail message from previously instantiated components.
|
ERCMailMessage |
ERCMailDelivery.composeEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
EOEditingContext ec)
Composes a mail message.
|
ERCMailMessage |
ERCMailDelivery.composeEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
EOEditingContext ec)
Composes a mail message.
|
ERCMailMessage |
ERCMailDelivery.composeEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
EOEditingContext ec)
Composes a mail message.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
void |
ERCMailMessage.setBccAddressesAsArray(NSArray bccAddresses) |
void |
ERCMailMessage.setCcAddressesAsArray(NSArray ccAddresses) |
void |
ERCoreBusinessLogic.setEmailsForProblemRecipients(NSArray a)
Sets the emails for problem recipients.
|
void |
ERCoreUserInterface.setPreferences(NSArray array) |
void |
ERCMailableExceptionPage.setReasonLines(NSArray reasonLines) |
void |
ERCMailMessage.setToAddressesAsArray(NSArray toAddresses) |
Modifier and Type | Method and Description |
---|---|
NSArray<ERCAuditTrailEntry> |
_ERCAuditTrail.entries() |
Modifier and Type | Method and Description |
---|---|
protected void |
ERCAuditTrailHandler.handleSave(EOEditingContext ec,
String typeKey,
NSArray objects) |
Modifier and Type | Method and Description |
---|---|
NSArray<ERXModelVersion> |
ERCoreBusinessLogic0.modelDependencies() |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERD2WModel.availablePageConfigurations() |
NSArray |
ERD2WModel.availableTasks() |
NSArray |
ERD2WModel.canidateRuleSetForRHSInContext(String rhs,
com.webobjects.directtoweb.D2WContext context) |
static NSArray |
ERDirectToWeb.displayableArrayForKeyPathArray(NSArray array,
String entityForReportName) |
NSArray |
ERD2WModel.rules() |
NSArray |
ERD2WContextDictionary.rulesForLevel(int level) |
static NSArray<EOSortOrdering> |
ERDirectToWeb.sortOrderings(com.webobjects.directtoweb.D2WContext d2wContext)
Returns a valid sort ordering based on the
defaultSortOrdering key. |
NSArray |
ERD2WFactory.visibleEntityNames(WOSession s) |
Modifier and Type | Method and Description |
---|---|
protected void |
ERD2WContextDictionary.addPropertyKeys(NSMutableDictionary componentLevelKeys,
NSArray array) |
void |
ERD2WModel.addRules(NSArray rules) |
protected void |
ERD2WContextDictionary.addRulesForPropertyKeys(int level,
NSMutableArray rules,
NSArray keys) |
static NSMutableArray |
ERDirectToWeb.convertedPropertyKeyArray(NSArray keyArray,
char startChar,
char endChar)
Converts a given array of keys to a format usable for section and tab display.
|
protected String |
ERD2WModel.descriptionForRuleSet(NSArray set) |
static NSArray |
ERDirectToWeb.displayableArrayForKeyPathArray(NSArray array,
String entityForReportName) |
protected void |
ERD2WModel.uniqueQualifiers(NSArray rules) |
protected void |
ERD2WModel.uniqueRuleAssignments(NSArray rules) |
Constructor and Description |
---|
ERD2WContainer(String newName,
NSArray newKeys) |
ERD2WContextDictionary(String pageConfigurationName,
NSArray pageKeys,
NSArray componentKeys) |
ERD2WContextDictionary(String pageConfigurationName,
NSArray pageKeys,
NSArray componentKeys) |
ERD2WModel(NSArray rules)
Main constructor.
|
ERD2WPageRunner(NSArray pages) |
Modifier and Type | Field and Description |
---|---|
static NSArray |
ERDTabDictionaryComputer._DEPENDENT_KEYS
Holds the keys this assignment is dependent upon
|
static NSArray |
ERDSortedManyToManyAssignment._DEPENDENT_KEYS
holds the array of dependent keys
|
static NSArray |
ERDImageNameAssignment._DEPENDENT_KEYS
holds the array of keys this assignment depends upon
|
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDTabSectionsContentsAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDTabDictionaryComputer.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDSortedManyToManyAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDLocalizedAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDImageNameAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray<String> |
ERDEnumAssignment.dependentKeys(String keyPath) |
NSArray |
ERDComputingAssignmentInterface.dependentKeys(String keyPath) |
static NSArray |
ERDSortedManyToManyAssignment.joinRelationshipsForJoinEntity(EOEntity entity)
Calculates the join relationships for a given join entity.
|
Modifier and Type | Field and Description |
---|---|
static NSArray |
ERDDefaultsEmbeddedAssignment._DEPENDENT_KEYS
holds the array of dependent keys
|
static NSArray |
ERDDefaultConfigurationNameAssignment._DEPENDENT_KEYS
holds the array of keys this assignment depends upon
|
static NSArray |
ERDDefaultActionAssignment._DEPENDENT_KEYS
holds the array of keys this assignment depends upon
|
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDDefaultsEmbeddedAssignment.defaultEmbeddedDisplayPropertyKeys(com.webobjects.directtoweb.D2WContext c)
Calculates the default embedded display property keys for a
given context.
|
NSArray |
ERDDefaultActionAssignment.defaultLeftActions(com.webobjects.directtoweb.D2WContext c)
Calculates the default left actions names for a given context.
|
NSArray |
ERDDefaultActionAssignment.defaultRightActions(com.webobjects.directtoweb.D2WContext c)
Calculates the default right actions names for a given context.
|
NSArray |
ERDDefaultsEmbeddedAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultModelAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultIDAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultFormControlNameAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultDisplayNameAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultConfigurationNameAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultClassStringAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDefaultActionAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
Modifier and Type | Field and Description |
---|---|
NSArray |
ERDDelayedSwitchAssignment._dependentKeys |
NSArray |
ERDDelayedConditionalAssignment._dependentKeys |
Modifier and Type | Method and Description |
---|---|
static NSArray |
ERDDelayedSelectorInvocationAssignment.DefaultImplementation.dependentKeys(com.webobjects.directtoweb.Assignment assignment,
String keyPath) |
NSArray |
ERDDelayedSwitchAssignment.dependentKeys(String keyPath) |
NSArray |
ERDDelayedSelectorInvocationAssignment.dependentKeys(String keyPath) |
NSArray<String> |
ERDDelayedNonNullConditionalAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDelayedKeyValueAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDelayedConditionalAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERDDelayedBooleanAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
Modifier and Type | Method and Description |
---|---|
protected EOQualifier |
ERDDelayedExtraQualifierAssignment.qualifierForArray(String key,
NSArray objects) |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERDActionBar.branchChoices |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERDFacetFilter.allKeys() |
NSArray<EOEnterpriseObject> |
ERDFacetFilter.allObjects() |
NSArray |
ERDActionBar.branchChoices()
Calculates the branch choices for the current
poage.
|
NSArray |
ERDCustomEditComponent.defaultSortOrderingsForDestinationEntity()
Hits the destinationEntityName rule to get the destination entity.
|
NSArray |
ERD2WFlyOverCustomComponent.displayPropertyKeys() |
NSArray |
ERD2WExtraDisplayPropertyKeysComponent.extraDisplayPropertyKeys()
Gets the array of the extra property keys to display.
|
NSArray |
ERDFacetFilter.keyList() |
NSArray |
ERD2WPropertyName.keyPathsWithValidationExceptions() |
NSArray |
ERD2WCheatSheet.keys() |
NSArray |
ERDFacetFilter.valueList() |
Modifier and Type | Field and Description |
---|---|
protected NSArray<String> |
ERD2WQueryBooleanRadioList._choicesNames |
protected NSArray<String> |
ERD2WCustomQueryBoolean._choicesNames |
protected NSArray<String> |
ERD2WCustomEditBoolean._choicesNames |
protected NSArray<String> |
ERD2WCustomDisplayBoolean._choicesNames |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERD2WQueryBooleanRadioList.choicesNames() |
NSArray<String> |
ERD2WCustomQueryBoolean.choicesNames() |
NSArray<String> |
ERD2WCustomEditBoolean.choicesNames() |
NSArray<String> |
ERD2WCustomDisplayBoolean.choicesNames() |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERDControllerButton.branchChoices |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDControllerButton.branchChoices()
Calculates the branch choices for the current
page.
|
NSArray |
ERDEditListButton.list() |
Modifier and Type | Field and Description |
---|---|
protected static NSArray<String> |
ERDEditDatePopupCommon.dayList |
protected static NSArray<String> |
ERDEditDatePopupCommon.defaultMonthNameList |
protected static NSArray<String> |
ERDEditDatePopupCommon.monthList |
protected NSArray<String> |
ERDEditDatePopupCommon.monthNameList |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERDEditDatePopupCommon.dayList() |
NSArray |
ERDEditYearsMonths.monthList() |
NSArray<String> |
ERDEditDatePopupCommon.monthList() |
NSArray<String> |
ERDEditDatePopupCommon.monthNameList() |
NSArray |
ERDEditYearsMonths.yearList() |
NSArray<String> |
ERDEditDatePopupCommon.yearList() |
Modifier and Type | Field and Description |
---|---|
protected static NSArray |
ERD2WQueryNonNull._queryNumbersArray |
NSArray |
ERDListOrganizer.chosenObjects |
NSArray |
ERDListPicker.list |
NSArray |
ERD2WQueryOperator.queryOperators |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDListOrganizer.availableElements() |
NSArray |
ERD2WQueryNonNull.choicesNames() |
NSArray |
ERDEditList.list() |
NSArray |
ERDConfirmMessage.list() |
NSArray |
ERDQueryAnyKey.queryAttributes() |
NSArray |
ERD2WQueryNonNull.queryNumbers() |
NSArray |
ERD2WQueryOperator.queryOperators() |
NSArray |
ERDEditList.selections() |
Modifier and Type | Method and Description |
---|---|
void |
ERDSavedQueriesComponent.saveQueriesForPageConfigurationNamed(NSArray queries,
String pageConfigurationName) |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERD2WPopUp.list() |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERDList.list |
protected NSArray |
ERD2WList.list
caches the list
|
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDEditOwnedRelationship.entityNamesForNewInstances() |
NSArray |
ERDList.list() |
NSArray |
ERDLinkToViewList.list() |
NSArray |
ERDEditOwnedRelationship.list() |
NSArray |
ERD2WPickFromList.list() |
NSArray |
ERD2WPickFromEntities.list() |
NSArray |
ERD2WPick.list() |
NSArray |
ERD2WList.list() |
NSArray |
ERD2WDisplayList.listToDisplay() |
NSArray |
ERDEditToManyRelationship.objects() |
NSArray |
ERDQueryTwoLevelRelationship.possibleChildren() |
NSArray |
ERDEditOwnedRelationship.selectionList() |
NSArray |
ERD2WEditSortedToManyFault.sortedBrowserList() |
Modifier and Type | Field and Description |
---|---|
NSArray |
ERDGroupingListPageRepetition.sublist |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDListPageRepetition.centerActions() |
NSArray |
ERDAttributeRepetition.currentSectionKeys() |
NSArray<String> |
ERDAttributeRepetition.displayPropertyKeys() |
NSArray |
ERDListPageRepetition.itemSectionsContents() |
NSArray |
ERDListPageRepetition.leftActions() |
NSArray |
ERDListPageRepetition.rightActions() |
NSArray |
ERDListPageRepetition.sectionsContents() |
NSArray |
ERDAttributeRepetition.sectionsContents() |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERDEditStringWithChoices._availableElements |
NSArray |
ERD2WQueryStringWithChoices._choices |
Modifier and Type | Method and Description |
---|---|
NSArray<ERXKeyValuePair<String,String>> |
ERD2WQueryStringOperator.allQualifierOperators() |
NSArray |
ERDEditStringWithChoices.availableElements() |
NSArray |
ERD2WQueryStringWithChoices.choices() |
NSArray<String> |
ERD2WQueryStringOperator.qualifierOperatorsOverrideFromRules()
_allQualifierOperators をオーバライドできます。
|
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDBranchDelegateInterface.branchChoicesForContext(com.webobjects.directtoweb.D2WContext context)
Calculates which branches to show in the display first
asking the context for the key branchChoices if
this returns null then using reflection all of the
public methods that take a single WOComponent as a
parameter are returned.
|
NSArray |
ERDBranchDelegate.branchChoicesForContext(com.webobjects.directtoweb.D2WContext context)
Calculates which branches to show in the display first
asking the context for the key branchChoices.
|
protected NSArray |
ERDBranchDelegate.choiceByLeavingKeys(NSArray keys,
NSArray choices)
Utility to leave entries based on an array of keys
|
protected NSArray |
ERDBranchDelegate.choiceByRemovingKeys(NSArray keys,
NSArray choices)
Utility to remove entries based on an array of keys
|
protected NSArray |
ERDBranchDelegate.defaultBranchChoices(com.webobjects.directtoweb.D2WContext context)
Uses reflection to find all of the public methods that don't start with
an underscore and take a single WOComponent as a parameter are returned.
|
Modifier and Type | Method and Description |
---|---|
protected NSArray |
ERDBranchDelegate.choiceByLeavingKeys(NSArray keys,
NSArray choices)
Utility to leave entries based on an array of keys
|
protected NSArray |
ERDBranchDelegate.choiceByLeavingKeys(NSArray keys,
NSArray choices)
Utility to leave entries based on an array of keys
|
protected NSArray |
ERDBranchDelegate.choiceByRemovingKeys(NSArray keys,
NSArray choices)
Utility to remove entries based on an array of keys
|
protected NSArray |
ERDBranchDelegate.choiceByRemovingKeys(NSArray keys,
NSArray choices)
Utility to remove entries based on an array of keys
|
Modifier and Type | Method and Description |
---|---|
NSArray |
D2WPick.list() |
NSArray<Object> |
ERXD2WEditRelationship.masterObjectAndRelationshipKey() |
Modifier and Type | Method and Description |
---|---|
void |
ERXD2WEditRelationship.setMasterObjectAndRelationshipKey(NSArray<Object> a) |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERExcelListPage.objectsForSheet() |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERDPickPageInterface.selectedObjects() |
Modifier and Type | Method and Description |
---|---|
void |
ERDPickPageInterface.setChoices(NSArray choices) |
void |
ERDPickPageInterface.setSelectedObjects(NSArray selectedObjects) |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERD2WQueryPage._nullablePropertyKeys |
NSArray |
ERD2WEditSortedManyToManyPage.browserSelections |
NSArray |
ERD2WGroupingListPage.sublist |
Modifier and Type | Method and Description |
---|---|
static NSArray<String> |
ERD2WPage.allConfigurationNames()
Collects the names of all page configurations as you walk through your
application.
|
NSArray<String> |
ERD2WGraphVizPage.attributes() |
NSArray |
ERD2WPage.branchChoices()
Calculates the branch choices for the current page.
|
NSArray |
ERD2WPickTypePage.choices() |
NSArray |
ERD2WListComparePage.compareList() |
NSArray |
ERD2WPage.currentSectionKeys()
The display keys for the current section.
|
NSArray |
ERD2WListComparePage.displayPropertyKeys() |
NSArray |
ERD2WPage.errorKeyOrder() |
NSArray |
ERD2WPickListPage.filteredObjects()
The display group's objects, filtered by the display group qualifier (if any)
|
NSArray |
ERD2WQueryPage.nullablePropertyKeys()
Discovers the property keys that can be queried for a NULL value.
|
NSArray |
ERD2WQueryPage.prefetchingRelationshipKeyPaths() |
NSArray |
ERD2WListPage.referenceEOs() |
NSArray |
ERD2WPage.sectionsContents()
The array of sections.
|
NSArray |
ERD2WPage.sectionsForCurrentTab()
Returns the sections on the current tab.
|
NSArray |
ERD2WPickTypePage.selectedObjects() |
NSArray |
ERD2WPickListPage.selectedObjects() |
NSArray |
ERD2WListPage.selectedObjects()
The currently selected objects.
|
NSArray<EOSortOrdering> |
ERD2WListPage.sortOrderings() |
NSArray<ERD2WContainer> |
ERD2WPage.tabSectionsContents()
Returns the array of
ERD2WContainer defining the tabs. |
protected static NSArray |
ERD2WPage.tabSectionsContentsFromRuleResult(NSArray tabSectionContentsFromRule)
Helper method to calculate the tab key array
|
NSArray<String> |
ERD2WGraphVizPage.toManyRelationships() |
NSArray<String> |
ERD2WGraphVizPage.toOneRelationships() |
Modifier and Type | Method and Description |
---|---|
protected boolean |
ERD2WListPage.isValidSortKey(NSArray<String> displayPropertyKeys,
String sortKey)
Validates the given sort key (is it a display key, an attribute, or a valid attribute path).
|
void |
ERD2WPickTypePage.setChoices(NSArray choices) |
void |
ERD2WPickListPage.setChoices(NSArray choices) |
void |
ERD2WPickTypePage.setSelectedObjects(NSArray value) |
void |
ERD2WPickListPage.setSelectedObjects(NSArray selectedObjects) |
void |
ERD2WListPage.setSelectedObjects(NSArray eos)
Sets currently selected objects.
|
protected void |
ERD2WListPage.setSortOrderingsOnDisplayGroup(NSArray sortOrderings,
WODisplayGroup dg) |
void |
ERD2WGroupingListPage.setSublist(NSArray value) |
protected static NSArray |
ERD2WPage.tabSectionsContentsFromRuleResult(NSArray tabSectionContentsFromRule)
Helper method to calculate the tab key array
|
Modifier and Type | Method and Description |
---|---|
NSArray<com.webobjects.eodistribution.common._EOServerReturnValue> |
ERDistributionContext._processClientRequest(NSArray invocations)
Adds request and response logging
|
NSArray<EOClassDescription> |
ERDistributionSession.clientSideRequestGetClassDescriptions() |
Modifier and Type | Method and Description |
---|---|
NSArray<com.webobjects.eodistribution.common._EOServerReturnValue> |
ERDistributionContext._processClientRequest(NSArray invocations)
Adds request and response logging
|
Modifier and Type | Method and Description |
---|---|
protected void |
ERClientApplication.registerClassDescriptions(NSArray<EOClassDescription> classDescriptions)
Note: assumes your entity names and your classes' simple-names are the same.
|
Modifier and Type | Field and Description |
---|---|
NSArray |
ERCMailableExceptionPage._reasonLines |
Modifier and Type | Method and Description |
---|---|
NSArray<ERCMessageAttachment> |
_ERCMailMessage.attachments() |
NSArray |
ERCMailMessage.bccAddressesAsArray() |
NSArray |
ERCMailMessage.ccAddressesAsArray() |
NSArray |
ERCoreUserInterface.preferences() |
NSArray |
ERCMailableExceptionPage.reasonLines() |
NSArray |
ERCMailMessage.toAddressesAsArray() |
Modifier and Type | Method and Description |
---|---|
static String |
ERCMailDelivery.commaSeparatedListFromArray(NSArray a)
Utilitiy method used to break an array of email addresses
down into a comma separated list.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
String plainTextComponentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
String plainTextComponentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String componentName,
String plainTextComponentName,
NSDictionary bindings,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
EOEditingContext ec)
Composes a mail message from a given component.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
WOComponent plainTextComponent,
EOEditingContext ec)
Composes a mail message from previously instantiated components.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
WOComponent plainTextComponent,
EOEditingContext ec)
Composes a mail message from previously instantiated components.
|
ERCMailMessage |
ERCMailDelivery.composeComponentEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
WOComponent component,
WOComponent plainTextComponent,
EOEditingContext ec)
Composes a mail message from previously instantiated components.
|
ERCMailMessage |
ERCMailDelivery.composeEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
EOEditingContext ec)
Composes a mail message.
|
ERCMailMessage |
ERCMailDelivery.composeEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
EOEditingContext ec)
Composes a mail message.
|
ERCMailMessage |
ERCMailDelivery.composeEmail(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
EOEditingContext ec)
Composes a mail message.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
ERCMailMessage |
ERCMailDelivery.composeEmailWithAttachments(String from,
NSArray to,
NSArray cc,
NSArray bcc,
String title,
String message,
NSArray filePaths,
EOEditingContext ec)
Composes a mail message with attachments.
|
void |
ERCMailMessage.setBccAddressesAsArray(NSArray bccAddresses) |
void |
ERCMailMessage.setCcAddressesAsArray(NSArray ccAddresses) |
void |
ERCoreUserInterface.setPreferences(NSArray array) |
void |
ERCMailableExceptionPage.setReasonLines(NSArray reasonLines) |
void |
ERCMailMessage.setToAddressesAsArray(NSArray toAddresses) |
Modifier and Type | Method and Description |
---|---|
static NSArray<String> |
ERXExtensions.KeyValueQualifierSQLGenerationSupport.parseDefinitionPropertyKeys(EOAttribute derivedAttribute)
Given the definition of a derived attribute belonging to the entity provided
this method parses the definition looking for key paths that represent properties.
|
Modifier and Type | Method and Description |
---|---|
static void |
ERXExtensions.refreshSharedObjectsWithNames(NSArray names)
Refreshes all of the objects for an array of entity names.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray<String> |
ERXRequest._browserLanguages
NSArray to keep browserLanguages in.
|
NSArray |
ERXWOResponseCacheKeyPolicy.PolicyCacheEntry.cookieKeys |
NSArray |
ERXWOResponseCacheKeyPolicy.PolicyCacheEntry.formKeys |
NSArray |
ERXWOResponseCacheKeyPolicy.PolicyCacheEntry.headerKeys |
protected static NSArray<String> |
ERXRequest.HOST_ADDRESS_KEYS |
protected static NSArray<String> |
ERXRequest.HOST_NAME_KEYS |
protected NSArray |
ERXPathDirectAction.pathParts
caches the path parts
|
Modifier and Type | Field and Description |
---|---|
protected NSDictionary<String,NSArray<String>> |
ERXRequest._cookieDictionary
Holds the cookies in a NSDictionary.
|
Modifier and Type | Method and Description |
---|---|
static NSArray<WOComponent> |
ERXWOContext._componentPath(WOContext context)
Debugging help, returns the path to current component as WOComponent objects.
|
NSArray |
ERXResourceManager._frameworkProjectBundles() |
NSArray<ERXDelayedRequestHandler.DelayedRequest> |
ERXDelayedRequestHandler.activeRequests()
Returns all active delayed requests.
|
NSArray<NSDictionary<String,Object>> |
ERXApplication.additionalAdaptors()
Returns the additionalAdaptors, but calls _addAdditionalAdaptors to give the runtime an opportunity to
programmatically force adaptors into the list.
|
NSArray<T> |
ERXDisplayGroup.allObjects() |
NSArray<String> |
ERXDisplayGroup.allQualifierOperators() |
static NSArray |
ERXMessageEncoding.availableEncodings() |
static NSArray |
ERXMessageEncoding.availableLanguages() |
NSArray |
ERXSession.availableLanguagesForTheApplication()
Returns the NSArray of language names available for
this application.
|
NSArray |
ERXSession.availableLanguagesForThisSession()
Returns the NSArray of language names available for
this particular session.
|
NSArray<String> |
ERXRequest.browserLanguages()
Returns a cooked version of the languages the user has set in his Browser.
|
static NSArray<String> |
ERXWOContext.componentPath(WOContext context)
Debugging help, returns the path to current component as a list of component names.
|
NSArray<T> |
ERXListDisplayGroup.displayedObjects() |
NSArray<T> |
ERXDisplayGroup.displayedObjects() |
NSArray<T> |
ERXDisplayGroup.filteredObjects()
Returns all objects, filtered by the qualifier().
|
protected NSArray<String> |
ERXRequest.fixAbbreviationArray(NSArray<String> languages)
Translates ("de", "en-us;q=0.33", "en", "en-gb;q=0.66") to ("de", "en_gb", "en-us", "en").
|
NSArray |
ERXPathDirectActionRequestHandler.getRequestHandlerPathForRequest(WORequest aRequest)
Modified version for getting the request handler path for a given
request.
|
NSArray |
ERXPathDirectAction.pathParts()
The path parts of a request correspond to to all of the pieces between the
request handler key and the class name.
|
NSArray<T> |
ERXDisplayGroup.selectedObjects() |
protected NSArray |
ERXWOXMLCoder.sortedArray(NSArray arr) |
NSArray<T> |
ERXDisplayGroup.sortedObjects()
Returns allObjects(), first filtered by the qualifier(), then sorted by the sortOrderings().
|
NSArray<EOSortOrdering> |
ERXDisplayGroup.sortOrderings() |
Modifier and Type | Method and Description |
---|---|
com.webobjects.appserver._private.WOComponentDefinition |
ERXApplication._componentDefinition(String s,
NSArray nsarray)
Bugfix for WO component loading.
|
boolean |
ERXDisplayGroup.addToSelection(NSArray<T> objects)
Extends the current selection by the given objects.
|
void |
ERXWOResponseCacheKeyPolicy.createPolicyEntryForClass(Class actionClass,
NSArray actionNames,
NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
void |
ERXWOResponseCacheKeyPolicy.createPolicyEntryForClass(Class actionClass,
NSArray actionNames,
NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
void |
ERXWOResponseCacheKeyPolicy.createPolicyEntryForClass(Class actionClass,
NSArray actionNames,
NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
void |
ERXWOResponseCacheKeyPolicy.createPolicyEntryForClass(Class actionClass,
NSArray actionNames,
NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
protected void |
ERXWOXMLCoder.encodeArrayWithXMLTag(NSArray arr,
String tag,
boolean codeBasedOnClass,
int outputTags) |
protected NSArray<String> |
ERXRequest.fixAbbreviationArray(NSArray<String> languages)
Translates ("de", "en-us;q=0.33", "en", "en-gb;q=0.66") to ("de", "en_gb", "en-us", "en").
|
ERXMessageEncoding |
ERXBrowser.messageEncodingForLanguages(NSArray languages)
Gets the message encoding for a given array of languages.
|
boolean |
ERXDisplayGroup.removeFromSelection(NSArray<T> objects)
Removes the given objects from the current selection.
|
void |
ERXSession.setLanguages(NSArray languageList)
Sets the languages list for which the session is localized.
|
void |
ERXDisplayGroup.setSelectedObjects(NSArray objects) |
boolean |
ERXDisplayGroup.setSelectionIndexes(NSArray nsarray) |
void |
ERXListDisplayGroup.setSortOrderings(NSArray sortOrderings) |
void |
ERXDisplayGroup.setSortOrderings(NSArray<EOSortOrdering> sortOrderings)
Overridden to log a message when more than one sort order exists.
|
protected NSArray |
ERXWOXMLCoder.sortedArray(NSArray arr) |
String |
ERXDeployedBundle.urlForResource(String resourceName,
NSArray languagesList) |
String |
ERXResourceManager.urlForResourceNamed(String name,
String bundleName,
NSArray<String> languages,
WORequest request) |
String |
ERXResourceManager.IVersionManager.versionedUrlForResourceNamed(String resourceUrl,
String name,
String bundleName,
NSArray<String> languages,
WORequest request)
Returns the variant of the given resource URL adjusted to include
version information.
|
String |
ERXResourceManager.DefaultVersionManager.versionedUrlForResourceNamed(String resourceUrl,
String name,
String bundleName,
NSArray<String> languages,
WORequest request) |
String |
ERXResourceManager.PropertiesVersionManager.versionedUrlForResourceNamed(String resourceUrl,
String name,
String bundleName,
NSArray<String> languages,
WORequest request) |
Constructor and Description |
---|
ERXMessageEncoding(NSArray preferedLanguages) |
PolicyCacheEntry(NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
PolicyCacheEntry(NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
PolicyCacheEntry(NSArray formKeys,
NSArray headerKeys,
NSArray cookieKeys) |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERXNavigation._additionalNavigationState |
protected NSArray |
ERXNavigationState._additionalState |
protected NSArray<String> |
ERXNavigationItem._children |
protected NSArray |
ERXNavigationItem._childrenConditions |
protected NSArray |
ERXNavigationItem._conditions |
protected NSArray |
ERXNavigationMenu._level1Items |
protected NSArray |
ERXNavigationMenu._level2Items |
protected NSArray |
ERXNavigationMenu._level3Items |
protected NSArray |
ERXNavigation._navigationState |
protected NSArray |
ERXNavigationState._state |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERXNavigationComponent.additionalNavigationState() |
NSArray |
ERXNavigationItem.childItemsInContext(NSKeyValueCodingAdditions context) |
NSArray |
ERXNavigationMenuItem.children() |
NSArray<String> |
ERXNavigationItem.children() |
NSArray |
ERXModernNavigationMenuItem.children() |
NSArray |
ERXNavigationItem.childrenConditions() |
NSArray |
ERXNavigationItem.conditions() |
protected NSArray |
ERXNavigationManager.createNavigationItemsFromDictionaries(NSArray navItems) |
NSArray |
ERXNavigationMenu.itemsForLevel(int level) |
NSArray |
ERXNavigationMenu.level1Items() |
NSArray |
ERXNavigationMenu.level2Items() |
NSArray |
ERXNavigationMenu.level3Items() |
NSArray |
ERXNavigationState.navigationItemsForLevel(int level,
NSKeyValueCodingAdditions context) |
NSArray |
ERXNavigationState.navigationItemsToBeShownForLevel(int currentNavigationLevel) |
NSArray |
ERXNavigation.navigationItemsToBeShownForLevel(int currentNavigationLevel) |
NSArray |
ERXNavigationComponent.navigationState() |
NSArray |
ERXNavigation.navigationState() |
NSArray |
ERXNavigationState.state() |
Modifier and Type | Method and Description |
---|---|
protected NSArray |
ERXNavigationManager.createNavigationItemsFromDictionaries(NSArray navItems) |
void |
ERXNavigation.setAdditionalNavigationState(NSArray value) |
void |
ERXNavigationState.setAdditionalState(NSArray value) |
void |
ERXNavigationMenu.setLevel1Items(NSArray newLevel1Items) |
void |
ERXNavigationMenu.setLevel2Items(NSArray newLevel2Items) |
void |
ERXNavigationMenu.setLevel3Items(NSArray newLevel3Items) |
protected void |
ERXNavigationManager.setNavigationItems(NSArray items) |
void |
ERXNavigation.setNavigationState(NSArray navigationState) |
void |
ERXNavigationState.setState(NSArray navigationState) |
Modifier and Type | Class and Description |
---|---|
static class |
ERXBatchingDisplayGroup.FakeArray
Dummy array class that is used to provide a certain number of entries.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray<T> |
ERXBatchingDisplayGroup._displayedObjects
cache for the displayed objects
|
protected NSArray<String> |
ERXBatchingDisplayGroup._prefetchingRelationshipKeyPaths |
Modifier and Type | Method and Description |
---|---|
NSArray<NSDictionary<String,Object>> |
ERXDirectActionBatchNavigationBar.batchNumbers()
Returns "batchNumber" objects which are dictionaries with key-value-pairs for the String to display.
|
NSArray<T> |
ERXBatchingDisplayGroup.displayedObjects()
Overridden method in order to fetch -only- the rows that are needed.
|
NSArray<T> |
ERXBatchingDisplayGroup.filteredObjects()
Overridden to return allObjects() when batching, as we can't qualify in memory.
|
NSArray |
ERXFlickrBatchNavigation.objects() |
protected NSArray<T> |
ERXBatchingDisplayGroup.objectsInRange(int start,
int end)
Utility to fetch the object in a given range.
|
NSArray<ERXFlickrBatchNavigation.PageNumber> |
ERXFlickrBatchNavigation.pageNumbers() |
NSArray<? extends Number> |
ERXFlickrBatchNavigation.possibleBatchSizes() |
NSArray<String> |
ERXBatchingDisplayGroup.prefetchingRelationshipKeyPaths()
Returns the prefetching key paths overriding those in the underlying fetch spec.
|
protected NSArray |
ERXBatchNavigationBar.selection() |
Modifier and Type | Method and Description |
---|---|
protected void |
ERXBatchNavigationBar.clearSelection(NSArray selection) |
protected abstract void |
AbstractBatchingList.loadPage(int startingIndex,
int pageSize,
NSArray sortOrderings)
Loads one page into this list.
|
void |
ERXBatchingDisplayGroup.setObjectArray(NSArray objects)
Overridden to update the batch count.
|
void |
ERXBatchingDisplayGroup.setPrefetchingRelationshipKeyPaths(NSArray<String> prefetchingRelationshipKeyPaths)
Sets the prefetching key paths to override those in the underlying fetch spec.
|
void |
IBatchingList.setSortOrderings(NSArray _sortOrderings)
Sets the sort orderings of this list.
|
void |
AbstractBatchingList.setSortOrderings(NSArray sortOrderings) |
void |
ERXBatchingDisplayGroup.setSortOrderings(NSArray<EOSortOrdering> sortOrderings)
Overridden to preserve the selected objects.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERXDateGrouper._datesForCurrentWeek |
protected static NSArray |
ERXEditingContextInspector._keys |
protected NSArray |
ERXArrayChooser._list |
protected NSArray |
ERXDateGrouper._objects |
protected NSArray |
ERXCheckboxMatrix._selections |
protected NSArray |
ERXArrayChooser._unmatchedValues |
static NSArray |
ERXGraphUtilities.blue |
static NSArray |
ERXGraphUtilities.green |
static NSArray |
ERXGraphUtilities.grey |
protected NSArray |
ERXCachingWrapper.keys |
protected NSArray |
ERXListDisplay.list |
static NSArray |
ERXGraphUtilities.orange |
static NSArray |
ERXGraphUtilities.yellow |
Modifier and Type | Method and Description |
---|---|
protected NSArray |
ERXDateGrouper._datesForYearStartDays(int year,
int startOffset,
int count) |
protected NSArray |
ERXDateGrouper._weekDatesForDate(NSTimestamp week) |
protected NSArray<String> |
ERXComponent.additionalCSSFiles()
Returns an array of additional CSS files for this component, or null (or
empty array) if there aren't any.
|
protected NSArray<String> |
ERXComponent.additionalJavascriptFiles()
Returns an array of additional Javascript files for this component, or
null (or empty array) if there aren't any.
|
NSArray |
ERXDateGrouper.allObjects() |
NSArray |
ERXDirectActionHyperlink.allObjectsForFormValues()
Returns all of the objects to be encoded
in the form values.
|
static NSArray<TimeZone> |
ERXTimeZoneDetector.allZones() |
protected <T> NSArray<T> |
ERXComponent.arrayValueForBinding(String binding)
Resolves a given binding as an NSArray object.
|
protected <T> NSArray<T> |
ERXComponent.arrayValueForBinding(String binding,
NSArray<T> defaultValue)
Resolves a given binding as an NSArray object.
|
static <T> NSArray<T> |
ERXComponentUtilities.arrayValueForBinding(String name,
NSArray<T> defaultValue,
NSDictionary<String,WOAssociation> associations,
WOComponent component)
Retrieves the current array value of the given binding from the component.
|
<T> NSArray<T> |
ERXDynamicElement.arrayValueForBinding(String name,
NSArray<T> defaultValue,
WOComponent component)
Resolves a given binding as an NSArray object.
|
static NSArray |
ERXComponentUtilities.arrayValueForBinding(String name,
NSDictionary<String,WOAssociation> associations,
WOComponent component)
Retrieves the current array value of the given binding from the component.
|
<T> NSArray<T> |
ERXDynamicElement.arrayValueForBinding(String name,
WOComponent component)
Resolves a given binding as an NSArray object.
|
NSArray<String> |
ERXLocalizationEditor.availableLanguages() |
NSArray |
ERXLanguageMenu.availableLanguages() |
NSArray |
ERXLayoutTable.colCounts() |
static NSArray<String> |
ERXComponentUtilities.componentTree()
Returns an array of the current component names.
|
abstract NSArray |
ERXArrayChooser.currentValues() |
NSArray |
ERXDateGrouper.datesForCurrentMonth() |
NSArray |
ERXDateGrouper.datesForCurrentWeek() |
NSArray |
ERXDateGrouper.datesForWeeksForCurrentMonth() |
protected NSArray |
ERXArrayChooser.destinationSortKeys() |
NSArray |
ERXDateGrouper.displayedObjects() |
NSArray |
ERXErrorDictionaryPanel.errorKeys() |
static NSArray |
ERXFakeRelationship.fakeRelationshipForKey(EOEnterpriseObject sourceObject,
String relationshipKey,
String destinationEntityName,
String delimiter) |
NSArray<String> |
ERXLocalizationEditor.fileNamesToWatch() |
NSArray<String> |
ERXLocalizationEditor.frameworkSearchPath() |
NSArray<Integer> |
ERXQueryRecentDates.indexes() |
NSArray |
ERXEditingContextInspector.keys() |
protected NSArray |
ERXCachingWrapper.keys() |
static NSArray |
ERXGraphUtilities.lastNMonthsArray(int numberDesiredMonths) |
static NSArray |
ERXGraphUtilities.lastNMonthsAsStringsArray(int numberDesiredMonths) |
NSArray |
ERXStringListPicker.list() |
NSArray |
ERXListDisplay.list() |
NSArray |
ERXLayoutTable.list() |
NSArray |
ERXCheckboxMatrix.maybeSortedList() |
NSArray |
ERXDirectActionHyperlink.objectsForFormValues()
Cover method to return the binding: objectsForFormValues
This is an array of objects to be encoded as form values.
|
NSArray |
ERXEditingContextInspector.objectsForKey() |
NSArray<Boolean> |
ERXBooleanSelector.options() |
NSArray<TimeZone> |
ERXTimeZoneDetector.preferredTimeZones() |
NSArray<ERXBooleanSelector.BooleanProxy> |
ERXBooleanSelector.proxyOptions() |
NSArray |
ERXRepeatingTable.repeatingList() |
NSArray |
ERXGroupingRepetition.sections() |
NSArray |
ERXToManyRelationship.selections() |
NSArray |
ERXFakeRelationship.selections() |
NSArray |
ERXCheckboxMatrix.selections() |
NSArray |
ERXFakeRelationship.theList() |
NSArray |
ERXArrayChooser.theList() |
NSArray |
ERXArrayChooser.unmatchedValues() |
static NSArray<TimeZone> |
ERXTimeZoneDetector.zonesWithRawOffset(int minutes,
boolean dst,
boolean southern) |
Modifier and Type | Method and Description |
---|---|
static void |
ERXComponentUtilities.appendHtmlAttributes(NSDictionary<String,WOAssociation> associations,
NSArray<String> excludeKeys,
WOResponse response,
WOComponent component)
Appends a dictionary of associations as HTML attributes.
|
protected <T> NSArray<T> |
ERXComponent.arrayValueForBinding(String binding,
NSArray<T> defaultValue)
Resolves a given binding as an NSArray object.
|
static <T> NSArray<T> |
ERXComponentUtilities.arrayValueForBinding(String name,
NSArray<T> defaultValue,
NSDictionary<String,WOAssociation> associations,
WOComponent component)
Retrieves the current array value of the given binding from the component.
|
<T> NSArray<T> |
ERXDynamicElement.arrayValueForBinding(String name,
NSArray<T> defaultValue,
WOComponent component)
Resolves a given binding as an NSArray object.
|
static int |
ERXGraphUtilities.computeSumForKey(NSArray values,
String key) |
static String |
ERXDirectActionHyperlink.directActionHyperlink(WOContext context,
boolean encryptEos,
NSArray eos,
String entityNameSeparator,
NSDictionary encryptedDict,
NSDictionary unencryptedDict,
String appName,
String daName,
boolean relative,
String suffix) |
static String |
ERXComponentUtilities.htmlTemplate(String componentName,
NSArray languages)
Returns the contents of the html template for the given component name as
a string.
|
static URL |
ERXComponentUtilities.htmlTemplateUrl(String componentName,
NSArray languages)
Returns the URL of the html template for the given component name.
|
static WOElement |
ERXComponentUtilities.inheritTemplateFrom(String componentName,
NSArray<String> languages)
Allows a component to "inherit" the template (.html and .wod files) from another component.
|
void |
ERXDateGrouper.setDatesForCurrentWeek(NSArray value) |
static void |
ERXFakeRelationship.setFakeRelationshipForKey(EOEnterpriseObject sourceObject,
NSArray objects,
String relationshipKey,
String destinationEntityName,
String delimiter) |
void |
ERXDateGrouper.setObjectArray(NSArray value) |
void |
ERXFakeRelationship.setSelections(NSArray aValue) |
void |
ERXCheckboxMatrix.setSelections(NSArray aFormValuesArray) |
void |
ERXFakeRelationship.setTheList(NSArray aValue) |
static String |
ERXComponentUtilities.template(String componentName,
String extension,
NSArray languages)
Returns the contents of the template for the given component name as a
string.
|
static URL |
ERXComponentUtilities.templateUrl(String componentName,
String extension,
NSArray languages)
Returns the URL of the template for the given component name.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray<Object> |
ERXWORepetition.Context.nsarray |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERXJSPopUpRelationPicker._childrenSelection |
protected NSArray |
ERXJSToManyRelationshipEditor._list |
protected NSArray |
ERXJSRemoteCall._parameters |
protected NSArray |
ERXJSPopUpRelationPicker._parentEntitiesList |
protected NSArray |
ERXJSPopUpRelationPicker._parentSelection |
protected NSArray |
ERXJSPopUpRelationPicker._possibleChildren |
protected NSArray |
ERXJSToManyRelationshipEditor._selections |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERXJSPopUpRelationPicker.childrenSelection() |
NSArray |
ERXJSInputValidator.elementArray() |
NSArray |
ERXJSToManyRelationshipEditor.list()
Gets the list of items to display.
|
NSArray |
ERXJSToManyRelationshipEditor.maybeSortedList()
Gets the list of items and sorts it by the sort key if a sort key is available.
|
NSArray |
ERXJSRemoteCall.parameters() |
NSArray |
ERXJSPopUpRelationPicker.parentEntitiesList() |
NSArray |
ERXJSTwoLevelEditToOneRelationship.parentList() |
NSArray |
ERXJSPopUpRelationPicker.parentSelection() |
protected NSArray |
ERXJSPopUpRelationPicker.possibleChildren() |
NSArray |
ERXJSToManyRelationshipEditor.selections()
Gets the selections.
|
protected NSArray |
ERXJSPopUpRelationPicker.sortedChildren(Object parent) |
static NSArray<String> |
ERXYahooContentAnalysisService.termExtraction(String appid,
String content,
String context,
Integer maxTerms)
Returns a term extraction of significant words or phrases from the given
content using the Yahoo Term Extraction service:
http://developer.yahoo.com/search/content/V1/termExtraction.html.
|
protected NSArray |
ERXJSPopUpRelationPicker.unsortedChildren(Object parent) |
Modifier and Type | Method and Description |
---|---|
void |
ERXJSPopUpRelationPicker.setChildrenSelection(NSArray value) |
void |
ERXJSPopUpRelationPicker.setSelectedParents(NSArray value) |
Modifier and Type | Method and Description |
---|---|
static <T> NSArray<T> |
ERXTaskThread.taskForTaskClass(Class<T> clazz) |
static NSArray |
ERXTaskThread.taskInfos() |
static NSArray |
ERXTaskThread.tasks() |
static NSArray |
ERXLongResponseTask.WorkerThread.tasks() |
Modifier and Type | Method and Description |
---|---|
static NSMutableDictionary<String,String> |
ERXCrypto.decodedFormValuesDictionary(NSDictionary<String,NSArray<String>> dict)
Decodes all of the values from a given dictionary using the default
crypter.
|
Modifier and Type | Class and Description |
---|---|
static class |
ERXEnterpriseObjectArrayCache.NotFoundArray |
class |
ERXFaultArray<T extends EOEnterpriseObject>
Array that converts EOGlobalIDs to faults on the fly.
|
class |
ERXQueryAttributes
ERXQueryAttributes.java
|
static class |
ERXSortOrdering.ERXSortOrderings
ERXSortOrderings is an NSMutableArray<EOSortOrdering> that
provides methods for chaining.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray<String> |
ERXModelGroup._modelLoadOrder |
NSArray<String> |
ERXDatabaseDataSource._prefetchingRelationshipKeyPaths |
protected NSArray<String> |
ERXModelGroup._prototypeModelNames |
protected NSArray<EOEntity> |
ERXEntityOrder.allEntities |
static NSArray |
ERXConstant.EmptyArray |
protected static NSArray |
ERXEnterpriseObjectArrayCache.NOT_FOUND_MARKER |
protected NSArray |
ERXFetchSpecificationBatchIterator.primaryKeys
holds an array of primary key values to iterate through
|
static NSArray |
ERXConstant.SingleNullValueArray |
Modifier and Type | Field and Description |
---|---|
protected static NSMutableDictionary<String,NSArray<EOAttribute>> |
ERXCopyable.Utility._classAttributesDictionary |
protected static NSMutableDictionary<String,NSArray<EORelationship>> |
ERXCopyable.Utility._classRelationshipsDictionary |
protected static NSMutableDictionary<String,NSArray<EOAttribute>> |
ERXCopyable.Utility._exposedPKAndFKAttributeDictionary |
Modifier and Type | Method and Description |
---|---|
protected NSArray<E> |
ERXFetchSpecificationBatchIterator._fetchNextBatch()
Fetches the next batch unconditionally.
|
NSArray |
ERXDatabaseContext._objectsWithFetchSpecificationEditingContext(EOFetchSpecification fetchSpec,
EOEditingContext context) |
static NSArray |
ERXModelGroup._prototypeKeys() |
NSArray |
ERXDatabase.ToManySnapshotUpdated.addedGIDs() |
NSArray<er.extensions.eof.ERXGroupingFetchSpecification.Aggregate> |
ERXGroupingFetchSpecification.aggregates() |
NSArray<EOEntity> |
ERXEntityOrder.allEntities() |
NSArray<T> |
ERXEnterpriseObjectCache.allObjects(EOEditingContext ec)
Returns a list of all the objects currently in the cache and not yet expired.
|
NSArray<T> |
EOEnterpriseObjectClazz.allObjects(EOEditingContext ec)
Gets all of the objects for the clazz's entity.
|
NSArray<T> |
ERXEnterpriseObjectCache.allObjects(EOEditingContext ec,
EOQualifier additionalQualifier)
Returns a list of all the objects currently in the cache and not yet expired which match additionalQualifier.
|
static NSArray<EOEntity> |
ERXEOAccessUtilities.allSubEntitiesForEntity(EOEntity rootEntity,
boolean includeAbstracts)
Utility method used to find all of the sub entities
for a given entity.
|
NSArray |
ERXEC.arrayFaultWithSourceGlobalID(EOGlobalID eoglobalid,
String s,
EOEditingContext eoeditingcontext) |
static NSArray |
ERXEOControlUtilities.arrayFromDataSource(EODataSource dataSource)
Converts a data source into an array.
|
NSArray<T> |
ERXKey.arrayValueInObject(Object obj)
Return the value of this keypath on the given object cast as an NSArray.
|
static NSArray<EOProperty> |
ERXEOAccessUtilities.attributePathForKeyPath(EOEntity entity,
String keyPath)
Creates an array of relationships and attributes from the given keypath to give to the
EOSQLExpression method
sqlStringForAttributePath . |
NSArray |
ERXForwardingAdaptorChannel.attributesToFetch() |
static NSArray |
ERXBatchFetchUtilities.batchFetchAndRetrieve(NSArray sourceObjects,
String keypath)
Shortcut for batch fetching a single keypath and returns the fetched values.
|
static NSArray |
ERXBatchFetchUtilities.batchFetchAndRetrieve(NSArray sourceObjects,
String keypath,
boolean skipFaultedSourceObjects)
Shortcut for batch fetching a single keypath and returns the fetched values.
|
NSArray<E> |
ERXFetchSpecificationBatchIterator.batchWithIndex(int index)
Returns the batch corresponding to the given index, that is, the
batch beginning at
ERXFetchSpecificationBatchIterator.batchSize() * index. |
NSArray<E> |
ERXFetchSpecificationBatchIterator.batchWithRange(NSRange requestedRange)
Returns the batch corresponding to the given range.
|
protected NSArray<EOGlobalID> |
ERXEnterpriseObjectArrayCache.cachedArrayForKey(Object key) |
NSArray |
ERXForwardingAdaptorContext.channels() |
static NSArray<EOAttribute> |
ERXCopyable.Utility.classAttributes(EOEntity entity) |
static NSArray |
ERXEOAccessUtilities.classPropertiesNotInParent(EOEntity entity,
boolean includeAttributes,
boolean includeToOneRelationships,
boolean includeToManyRelationships) |
static NSArray<EORelationship> |
ERXCopyable.Utility.classRelationships(EOEntity entity) |
static NSArray |
ERXConstant.constantsForClassName(String clazzName)
Retrieves all constants for the given class name ordered by value.
|
static NSArray<ERXCopyable.CopyType> |
ERXCopyable.CopyType.copyTypesFor(EOProperty property) |
NSArray |
ERXDatabaseContextMulticastingDelegate.databaseContextShouldFetchObjects(EODatabaseContext dbCtxt,
EOFetchSpecification fetchSpec,
EOEditingContext ec) |
NSArray |
ERXDatabaseContextDelegate.databaseContextShouldFetchObjects(EODatabaseContext dbc,
EOFetchSpecification fs,
EOEditingContext ec)
Returns an array of already fetched objects or null if they were not already fetched.
|
NSArray |
ERXDatabaseContextMulticastingDelegate.databaseContextWillOrderAdaptorOperations(EODatabaseContext dbCtxt,
NSArray databaseOps) |
NSArray |
ERXDatabaseContextMulticastingDelegate.databaseContextWillPerformAdaptorOperations(EODatabaseContext dbCtxt,
NSArray adaptorOps,
EOAdaptorChannel adChannel) |
NSArray |
ERXDatabaseContextDelegate.databaseContextWillPerformAdaptorOperations(EODatabaseContext dbCtxt,
NSArray adaptorOps,
EOAdaptorChannel adChannel)
Overridden to remove inserts and deletes of the "same" row.
|
static NSArray |
ERXEOEncodingUtilities.decodeEnterpriseObjectsFromFormValues(EOEditingContext ec,
NSDictionary values)
Decodes all of the objects for a given set of form values in
the given editing context.
|
NSArray |
ERXObjectStoreCoordinatorSynchronizer.LocalChange.deletedGIDs() |
NSArray<EOEnterpriseObject> |
ERXEC.deletedObjects() |
static NSArray |
ERXObjectStoreCoordinatorSynchronizer.dequeueCacheChanges(EODatabase database) |
NSArray |
ERXForwardingAdaptorChannel.describeResults() |
NSArray |
ERXForwardingAdaptorChannel.describeStoredProcedureNames() |
NSArray |
ERXForwardingAdaptorChannel.describeTableNames() |
static <T> NSArray<T> |
ERXEOControlUtilities.distinctValuesForKeyPath(EOEditingContext editingContext,
String entityName,
String keyPath,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings)
Returns an NSArray of distinct values available for the given entity and key path.
|
static NSArray |
ERXEOEncodingUtilities.enterpriseObjectsForEntityNamedFromFormValues(EOEditingContext ec,
String entityName,
NSDictionary formValues)
Returns the enterprise objects fetched with decoded
formValues from
entityName . |
static NSArray<EOEntity> |
ERXEOAccessUtilities.entityHierarchyForEntity(EOEditingContext ec,
EOEntity rootEntity)
Utility method used to find all of the non-abstract sub entities
for a given entity including itself.
|
static NSArray<String> |
ERXEOAccessUtilities.entityHierarchyNamesForEntityNamed(EOEditingContext ec,
String rootEntityName)
Utility method used to find all of the non-abstract sub entity names
for a given entity including itself.
|
protected NSArray<String> |
ERXFetchResultCache.excludedEntities()
Returns a list of entities that should not be cached.
|
static NSArray<String> |
ERXCopyable.Utility.exposedPKandFKAttributeNames(ERXEnterpriseObject source)
Returns an array of attribute names from the
EOEntity of
source that are used in the primary key, or in forming
relationships. |
static NSArray<EOAttribute> |
ERXCopyable.Utility.exposedPKAndFKAttributes(ERXEnterpriseObject source)
Returns an array of class
EOAttribute s from the
EOEntity of source that are used in the primary key,
or in forming EORelationship s. |
static NSArray |
ERXEOAccessUtilities.externalNamesForEntity(EOEntity entity,
boolean includeParentEntities) |
static NSArray |
ERXEOAccessUtilities.externalNamesForEntityNamed(String entityName,
boolean includeParentEntities) |
NSArray |
ERXForwardingAdaptor.externalTypesWithModel(EOModel model) |
static NSArray<EOKeyValueQualifier> |
ERXQ.extractKeyValueQualifiers(EOQualifier qualifier)
Analyzes the given qualifier and returns all found
EOKeyValueQualifier objects
contained within. |
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.faultsForGlobalIDs(EOEditingContext ec,
NSArray<? extends EOGlobalID> gids)
Returns a NSArray containing EOEnterpriseObjects (actually faults...) for the provided EOGlobalIDs.
|
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.faultsForRawRowsFromEntity(EOEditingContext ec,
NSArray primKeys,
String entityName) |
NSArray<T> |
EOEnterpriseObjectClazz.faultsFromRawRows(EOEditingContext ec,
NSArray nsarray)
Constructs an array of faults for a given array
of primary keys in a given editing context for
the clazz's entity.
|
NSArray<T> |
EOEnterpriseObjectClazz.faultsMatchingQualifier(EOEditingContext ec,
EOQualifier eoqualifier)
Fetches an array of faults matching a given qualifier.
|
NSArray<T> |
EOEnterpriseObjectClazz.faultsMatchingQualifier(EOEditingContext ec,
EOQualifier eoqualifier,
NSArray<EOSortOrdering> sortOrderings)
Fetches an array of faults matching a given qualifier
and sorted by an array of sort orderings.
|
NSArray<T> |
EOEnterpriseObjectClazz.faultsMatchingValues(EOEditingContext ec,
NSDictionary nsdictionary,
NSArray<EOSortOrdering> sortOrderings)
Fetches an array of faults for a given set of criteria.
|
NSArray<NSDictionary<String,Object>> |
ERXQuery.fetch()
Does the fetch and returns the values.
|
NSArray<NSDictionary<String,Object>> |
ERXQuery.fetch(EOEditingContext ec)
Does the fetch and returns the values.
|
<T> NSArray<T> |
ERXQuery.fetch(EOEditingContext ec,
Class<T> recordClass)
Returns fetch(ec, recordClass, NSDictionary.emptyDictionary())
|
<T> NSArray<T> |
ERXQuery.fetch(EOEditingContext ec,
ERXQuery.RecordConstructor<T> recordConstructor)
Convenience method to return fetch(ec, NSDictionary.emptyDictionary(), recordConstructor)
|
NSArray<NSDictionary<String,Object>> |
ERXQuery.fetch(EOEditingContext ec,
NSDictionary<String,Object> recordInitializationValues) |
<T> NSArray<T> |
ERXQuery.fetch(EOEditingContext anEC,
NSDictionary<String,Object> recordInitializationValues,
Class<T> recordClass)
Use this method to fetch results into objects of the specified class.
|
<T> NSArray<T> |
ERXQuery.fetch(EOEditingContext ec,
NSDictionary<String,Object> recordInitializationValues,
ERXQuery.RecordConstructor<T> recordConstructor)
Use this method to fetch either by using an implementation of the RecordConstructor
functional interface or by using a lambda expression as follows:
|
protected <T> NSArray<T> |
ERXQuery.fetch(EOSQLExpression expression,
NSArray<EOAttribute> fetchAttributes,
EOEditingContext ec,
NSDictionary<String,Object> initValues,
ERXQuery.RecordConstructor<T> recordConstructor)
Core fetch method.
|
NSArray |
ERXDetailDataSource.fetchObjects() |
NSArray<T> |
ERXGroupingFetchSpecification.fetchObjects(EOEditingContext ec)
Type-safe method to fetch the rows for this fetch spec.
|
NSArray<T> |
ERXFetchSpecification.fetchObjects(EOEditingContext ec)
Type-safe method to fetch objects for this fetch spec.
|
protected NSArray<T> |
ERXEnterpriseObjectCache.fetchObjectsForKey(EOEditingContext editingContext,
Object key)
Actually performs a fetch for the given key.
|
NSArray<NSDictionary<String,Object>> |
ERXFetchSpecification.fetchRawRows(EOEditingContext ec)
Type-safe method to fetch raw rows.
|
static <T> NSArray<T> |
ERXQ.filtered(NSArray<T> array,
EOQualifier qualifier)
Equivalent to EOQualifier.filteredArrayWithQualifier(NSArray,
EOQualifier)
|
NSArray<T> |
EOEnterpriseObjectClazz.filteredArray(NSArray<T> array,
EOFetchSpecification spec,
NSDictionary bindings)
Filters an array with a given fetch spec.
|
static NSArray |
ERXEOControlUtilities.filteredObjectsWithQualifier(EOEditingContext editingContext,
NSArray objectsToFilter,
String entityName,
EOQualifier qualifier,
NSArray sortOrderings,
boolean usesDistinct,
boolean isDeep,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to filter an array of objects given a qualifier.
|
static <T extends EOGlobalID> |
ERXEOGlobalIDUtilities.fireFaultsForGlobalIDs(EOEditingContext ec,
Collection<T> globalIDs)
Fires all faults in the given global IDs on one batch.
|
static <T extends EOGlobalID> |
ERXEOGlobalIDUtilities.fireFaultsForGlobalIDs(EOEditingContext ec,
Collection<T> globalIDs,
Collection<String> prefetchingKeypaths)
Fires all faults in the given global IDs on one batch together with their relationships.
|
static NSArray<EOGlobalID> |
ERXEOControlUtilities.globalIDsForObjects(NSArray<? extends EOEnterpriseObject> eos)
Returns a NSArray containing EOGlobalIDs from the provided eos.
|
static NSArray<EOGlobalID> |
ERXEOGlobalIDUtilities.globalIDsWithPrimaryKeyValues(String entityName,
Collection<Object> values)
Translates an array of single-value raw primary key values to EOGlobalIDs.
|
NSArray<String> |
ERXGroupingFetchSpecification.groupingKeyPaths() |
NSArray |
ERXObjectStoreCoordinatorSynchronizer.LocalChange.insertedGIDs() |
NSArray<EOEnterpriseObject> |
ERXEC.insertedObjects() |
NSArray |
ERXObjectStoreCoordinatorSynchronizer.LocalChange.invalidatedGIDs() |
NSArray |
ERXObjectStoreCoordinatorSynchronizer.LocalChange.localCacheChanges() |
NSArray<String> |
ERXGenericRecord.localesForKey(String key)
Returns all available ERXLanguages for the given key
|
NSArray |
ERXCustomObject.localInstancesOf(NSArray eos) |
<T extends EOEnterpriseObject> |
ERXGenericRecord.localInstancesOf(NSArray<T> eos) |
<T extends EOEnterpriseObject> |
ERXEnterpriseObject.localInstancesOf(NSArray<T> eos)
Returns an array of EOs in the same editing context as the caller.
|
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.localInstancesOfObjects(EOEditingContext ec,
NSArray<T> eos)
Provides the same functionality as the equivalent method
in
EOUtilities
except it will use the localInstanceOfObject
method from this utilities class which has a few enhancements. |
NSArray |
ERXDatabase.models() |
NSArray |
EOEnterpriseObjectClazz.newPrimaryKeys(EOEditingContext ec,
int i)
Generates an array of primary key values for
the clazz's entity.
|
NSArray<E> |
ERXFetchSpecificationBatchIterator.nextBatch()
Gets the next batch of enterprise objects for the
given fetch specification.
|
NSArray<D> |
ERXUnmodeledToManyRelationship.objects() |
NSArray<D> |
ERXUnmodeledToManyRelationship.objects(EOQualifier qualifier) |
NSArray<D> |
ERXUnmodeledToManyRelationship.objects(EOQualifier qualifier,
boolean fetch) |
NSArray<D> |
ERXUnmodeledToManyRelationship.objects(EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings,
boolean fetch) |
static NSArray |
ERXEOControlUtilities.objectsForFaults(EOEditingContext ec,
NSArray possibleFaults)
Triggers all faults in an efficient manner.
|
static NSArray |
ERXEOControlUtilities.objectsForFaultWithSortOrderings(EOEditingContext ec,
NSArray possibleFaults,
NSArray sortOrderings)
Uses
ERXEOControlUtilities.objectForFaults to turn the faults into objects, then does in memory
ordering with EOSortOrdering.EOSortOrdering.sortedArrayUsingKeyOrderArray() |
NSArray<? extends EOEnterpriseObject> |
ERXFetchResultCache.objectsForFetchSpecification(EODatabaseContext dbc,
EOEditingContext ec,
EOFetchSpecification fs)
Returns an array of EOs that where cached for the given fetch specification or null.
|
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.objectsForGlobalIDs(EOEditingContext ec,
NSArray<EOGlobalID> globalIDs)
Aggregate method for
EOEditingContext.objectForGlobalID() . |
NSArray<T> |
ERXEnterpriseObjectArrayCache.objectsForKey(EOEditingContext ec,
Object key)
Retrieves a list of EOs that matches the given key or null if no match
is in the cache.
|
NSArray |
ERXEC.objectsForSourceGlobalID(EOGlobalID eoglobalid,
String s,
EOEditingContext eoeditingcontext) |
NSArray |
ERXDatabaseContext.objectsForSourceGlobalID(EOGlobalID gid,
String name,
EOEditingContext context) |
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.objectsInRange(EOEditingContext ec,
EOFetchSpecification spec,
int start,
int end)
Returns an
NSArray containing the objects from the resulting rows starting
at start and stopping at end using a custom SQL, derived from the SQL
which the EOFetchSpecification would use normally setHints() |
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.objectsInRange(EOEditingContext ec,
EOFetchSpecification spec,
int start,
int end,
boolean rawRowsForCustomQueries)
Returns an
NSArray containing the objects from the resulting rows starting
at start and stopping at end using a custom SQL, derived from the SQL
which the EOFetchSpecification would use normally setHints() |
NSArray<T> |
EOEnterpriseObjectClazz.objectsMatchingKeyAndValue(EOEditingContext ec,
String key,
Object value)
Fetches all of the objects matching the given key and value
corresponding to the clazz's entity using the
given editing context.
|
NSArray<T> |
EOEnterpriseObjectClazz.objectsMatchingQualifier(EOEditingContext ec,
EOQualifier qualifier) |
NSArray<T> |
EOEnterpriseObjectClazz.objectsMatchingQualifier(EOEditingContext ec,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrdering) |
NSArray |
ERXEC.objectsWithFetchSpecification(EOFetchSpecification fs,
EOEditingContext eoeditingcontext) |
NSArray<T> |
EOEnterpriseObjectClazz.objectsWithFetchSpecificationAndBindings(EOEditingContext ec,
String name,
NSDictionary bindings)
Fetches an array of objects for a given fetch specification
and an array of bindings.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext ec,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
boolean includeNewObjects)
Calls objectsWithQualifier(ec, entityName, qualifier, prefetchKeyPaths, includeNewObjects, false).
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext _editingContext,
String _entityName,
EOQualifier _qualifier,
NSArray _prefetchKeyPaths,
boolean _includeNewObjects,
boolean _includeNewObjectsInParentEditingContext) |
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
NSArray sortOrderings,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
NSArray sortOrderings,
int fetchLimit,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
NSArray<T> |
EOEnterpriseObjectClazz.objectsWithQualifierFormat(EOEditingContext ec,
String qualifier,
NSArray args)
Fetches all of the objects matching the given qualifier
format corresponding to the clazz's entity using the
given editing context.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifierFormat(EOEditingContext ec,
String entityName,
String qualifierFormat,
NSArray args,
NSArray prefetchKeyPaths,
boolean includeNewObjects)
Calls
objectsWithQualifierFormat(ec, entityName, qualifierFormat, args, prefetchKeyPaths, includeNewObjects, false) . |
static NSArray |
ERXEOControlUtilities.objectsWithQualifierFormat(EOEditingContext ec,
String entityName,
String qualifierFormat,
NSArray args,
NSArray prefetchKeyPaths,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContexts)
Enhanced version of the utility method found in EOUtilities.
|
NSArray<Class<ERXPartial>> |
ERXEntityClassDescription.partialClasses()
Returns the list of partial entity classes for this entity.
|
NSArray |
ERXDatabaseDataSource.prefetchingRelationshipKeyPaths() |
static NSArray<EOAttribute> |
ERXCopyable.Utility.primaryAndForeignKeyAttributes(ERXEnterpriseObject source) |
static NSArray |
ERXEOControlUtilities.primaryKeyArrayForObject(EOEnterpriseObject obj)
Gives the primary key array for a given enterprise
object.
|
NSArray<String> |
ERXGenericRecord.primaryKeyAttributeNames() |
NSArray<String> |
ERXEnterpriseObject.primaryKeyAttributeNames()
Returns the names of all primary key attributes.
|
NSArray |
ERXCustomObject.primaryKeyAttributeNames() |
protected NSArray |
ERXFetchSpecificationBatchIterator.primaryKeys()
Method used to fetch the primary keys of the objects
for the given fetch specification.
|
static NSArray |
ERXEOAccessUtilities.primaryKeysForNewRows(EOEditingContext ec,
String entityName,
int count)
Creates count new primary keys for the entity.
|
NSArray |
ERXForwardingAdaptorChannel.primaryKeysForNewRowsWithEntity(int count,
EOEntity entity) |
static NSArray |
ERXEOAccessUtilities.primaryKeysForObjects(NSArray<? extends EOEnterpriseObject> eos)
Creates an array containing all of the primary keys of the given objects.
|
NSArray |
EOEnterpriseObjectClazz.primaryKeysMatchingQualifier(EOEditingContext ec,
EOQualifier eoqualifier,
NSArray sortOrderings)
Fetches an array of primary keys matching a given qualifier
and sorted with a given array of sort orderings.
|
static NSArray |
ERXEOControlUtilities.primaryKeysMatchingQualifier(EOEditingContext ec,
String entityName,
EOQualifier eoqualifier,
NSArray<EOSortOrdering> sortOrderings)
Fetches an array of primary keys matching a given qualifier
and sorted with a given array of sort orderings.
|
NSArray |
EOEnterpriseObjectClazz.primaryKeysMatchingValues(EOEditingContext ec,
NSDictionary nsdictionary,
NSArray sortOrderings)
Fetches an array of primary keys matching the values
in a given dictionary.
|
static NSArray<NSDictionary<String,Object>> |
ERXEOControlUtilities.primaryKeyValuesInRange(EOEditingContext ec,
EOFetchSpecification spec,
int start,
int end)
Returns an
NSArray containing the primary keys from the resulting rows starting
at start and stopping at end using a custom SQL, derived from the SQL
which the EOFetchSpecification would use normally setHints() |
static <T extends EOGlobalID> |
ERXEOGlobalIDUtilities.primaryKeyValuesWithGlobalIDs(Collection<T> globalIDs)
Translates an array of
EOGlobalID to primary key values. |
NSArray |
ERXForwardingAdaptor.prototypeAttributes() |
static NSArray |
ERXEOAccessUtilities.rawRowsForSQLExpression(EOEditingContext ec,
EOModel model,
EOSQLExpression expression,
NSArray<EOAttribute> attributes)
Returns the raw rows for the given EOSQLExpression.
|
static NSArray<NSDictionary> |
ERXEOAccessUtilities.rawRowsForSQLExpression(EOEditingContext ec,
String modelName,
EOSQLExpression expression)
Returns the raw rows for the given EOSQLExpression.
|
static NSArray |
ERXSQLQueryWithBindingsUtilities.rawRowsForSqlWithBindings(EOEditingContext ec,
String entityName,
String query,
ERXSQLBinding... bindings)
Runs a select query against the database, obtaining the resulting raw rows.
|
NSArray |
ERXDatabase.registeredContexts() |
NSArray |
ERXEC.registeredObjects() |
static NSArray<EORelationship> |
ERXEOAccessUtilities.relationshipsForAttribute(EOEntity entity,
EOAttribute attrib)
Filters a list of relationships for only the ones that
have a given EOAttribute as a source attribute.
|
protected NSArray<T> |
ERXEnterpriseObjectChangeListener.relevantChanges(EOEditingContext editingContext,
NSDictionary dict,
String key)
Helper to check if an array of EOs contains the handled entity or its
subclasses (if deep).
|
NSArray |
ERXObjectStoreCoordinatorSynchronizer.RemoteChange.remoteCacheChanges() |
NSArray |
ERXDatabase.ToManySnapshotUpdated.removedGIDs() |
NSArray |
ERXDatabase.resultCacheForEntityNamed(String name) |
NSArray<EOAttribute> |
ERXQuery.selectAttributes()
Returns the array containing the EOAttributes that ERXQuery used to
fetch the results.
|
static NSArray |
ERXSQLQueryWithBindingsUtilities.selectObjectsOfEntityForSqlWithBindings(EOEditingContext ec,
String entityName,
String query,
boolean refreshesCache,
ERXSQLBinding... bindings)
Runs a select query against the database, obtaining the resulting EOs.
|
static NSArray |
ERXSQLQueryWithBindingsUtilities.selectObjectsOfEntityForSqlWithBindings(EOEditingContext ec,
String entityName,
String query,
boolean refreshesCache,
Integer fetchLimit,
ERXSQLBinding... bindings)
Runs a select query against the database, obtaining the resulting EOs.
|
static NSArray |
ERXSQLQueryWithBindingsUtilities.selectObjectsOfEntityForSqlWithBindings(EOEditingContext ec,
String entityName,
String query,
ERXSQLBinding... bindings)
Runs a select query against the database, obtaining the resulting EOs.
|
static NSArray |
ERXEOControlUtilities.sharedObjectsForEntityNamed(String entityName)
Gets all of the shared objects for a given entity name.
|
static NSArray |
ERXEOControlUtilities.sharedObjectsMatchingKeyAndValue(String entityName,
String key,
Object value)
Finds objects in the shared editing context matching a key
and value.
|
static NSArray |
ERXEOControlUtilities.sharedObjectsWithFetchSpecificationNamed(String entityName,
String fetchSpecName)
Fetches a shared enterprise object from the default shared editing context
given the name of a fetch specification.
|
NSArray |
ERXDatabase.snapshotForSourceGlobalID(EOGlobalID gid,
String name) |
NSArray |
ERXDatabase.snapshotForSourceGlobalID(EOGlobalID gid,
String name,
long timestamp) |
static NSArray |
ERXEOAccessUtilities.snapshotsForObjectsFromRelationshipNamed(NSArray eos,
String relKey)
Given an array of EOs, returns snapshot dictionaries for the given
related objects.
|
<T> NSArray<T> |
ERXSortOrdering.sorted(NSArray<T> array)
Returns an array sorted with this sort ordering.
|
<T> NSArray<T> |
ERXSortOrdering.ERXSortOrderings.sorted(NSArray<T> array)
Returns an array sorted with this sort ordering.
|
static <T> NSArray<T> |
ERXS.sorted(NSArray<T> array,
EOSortOrdering... orderings) |
static <T> NSArray<T> |
ERXS.sorted(NSArray<T> array,
NSArray<EOSortOrdering> orderings) |
NSArray<EOSortOrdering> |
ERXKeyFilter.sortOrderings()
Returns the sort orderings that will be applied by this key filter.
|
static NSArray |
ERXEOControlUtilities.stringAttributeListForEntityNamed(EOEditingContext ec,
String entityName)
Calculates all of the EOAttributes of a given entity that
are mapped to String objects.
|
NSArray |
ERXObjectStoreCoordinatorSynchronizer.LocalChange.updatedGIDs() |
NSArray<EOEnterpriseObject> |
ERXEC.updatedObjects() |
NSArray<Class<? extends EOProperty>> |
ERXCopyable.CopyType.validPropertyClasses() |
static NSArray |
ERXAdaptorOperationWrapper.wrappedAdaptorOperations(NSArray adaptorOps)
Returns an array of ERXAdaptorOperations that can be serialzed to the transport of your choice.
|
Modifier and Type | Method and Description |
---|---|
<U> ERXKey<NSArray<U>> |
ERXKey.appendAsArray(ERXKey<U> key)
Return a new ERXKey that appends the given key to this keypath.
|
<U> ERXKey<NSArray<U>> |
ERXKey.atFetchSpec(String fetchSpecName,
ERXKey<U> key)
Creates a new ERXKey that appends ERXArrayUtilities'
@fetchSpec operator, the fetchSpecName and
the key to this key. |
<U> ERXKey<NSArray<U>> |
ERXKey.atFlatten(ERXKey<U> key)
Flattens this key
|
<U> ERXKey<NSArray<U>> |
ERXKey.atLimit(Integer limit,
ERXKey<U> key)
Creates a new ERXKey that appends this key with ERXArrayUtilities'
@limit operator and then the limit quantity and then the
key , which should resolve to an NSArray<U> when used. |
<U> ERXKey<NSArray<U>> |
ERXKey.atReverse(ERXKey<U> key)
Return a new ERXKey that prepends the given key with ERXArrayUtilities'
Reverse operator
@reverse . |
<U> ERXKey<NSArray<U>> |
ERXKey.atSubarrayWithRange(NSRange range,
ERXKey<U> key)
Return a new ERXKey that prepends the given key with ERXArrayUtilities'
SubarrayWithRange operator
subarrayWithRange . |
<U> ERXKey<NSArray<U>> |
ERXKey.atUnique(ERXKey<U> key)
Filters for unique values for this key
|
<U> ERXKey<NSArray<U>> |
ERXKey.dotArray(ERXKey<U> key)
Call appendAsArray(key).
|
static <U> ERXKey<NSArray<U>> |
ERXKey.fetchSpec(String fetchSpecName,
ERXKey<U> key)
Creates a new ERXKey that prepends the
key with
ERXArrayUtilities' @fetchSpec operator and the
fetchSpecName . |
static <U> ERXKey<NSArray<U>> |
ERXKey.flatten(ERXKey<U> key)
Will flatten an array of arrays or a key it is appended to
|
static <T extends EOGlobalID> |
ERXEOGlobalIDUtilities.globalIDsGroupedByEntityName(Collection<T> globalIDs)
Groups an array of global IDs by their entity name.
|
static <U> ERXKey<NSArray<U>> |
ERXKey.limit(Integer limit,
ERXKey<U> key)
Limits the size of the array it is called on or the key it is appended
to.
|
static <U> ERXKey<NSArray<U>> |
ERXKey.reverse(ERXKey<U> key)
Return a new ERXKey that prepends the given key with ERXArrayUtilities'
Reverse operator @reverse.
|
static <U> ERXKey<NSArray<U>> |
ERXKey.subarrayWithRange(NSRange range,
ERXKey<U> key)
Return a new ERXKey that prepends the given key with ERXArrayUtilities'
SubarrayWithRange operator
subarrayWithRange . |
static <U> ERXKey<NSArray<U>> |
ERXKey.unique(ERXKey<U> key)
Will filter an array or a key it is appended to
|
Modifier and Type | Method and Description |
---|---|
void |
ERXDatabaseContext._followFetchSpecification(EOFetchSpecification fetchSpec,
String relationshipName,
NSArray sourceObjects,
EOEditingContext context) |
static void |
ERXAdaptorOperationWrapper.adaptorOperationsDidPerform(NSArray ops) |
void |
ERXGenericRecord.addObjectsToBothSidesOfRelationshipWithKey(NSArray<? extends EOEnterpriseObject> objects,
String key) |
void |
ERXEnterpriseObject.addObjectsToBothSidesOfRelationshipWithKey(NSArray<? extends EOEnterpriseObject> objects,
String key)
Adds a collection of objects to a given relationship by calling
addObjectToBothSidesOfRelationshipWithKey for all
objects in the collection. |
void |
ERXCustomObject.addObjectsToBothSidesOfRelationshipWithKey(NSArray objects,
String key) |
void |
ERXForwardingAdaptorChannel.addStoredProceduresNamed(NSArray storedProcedureNames,
EOModel model) |
void |
ERXUnmodeledToManyRelationship.addToObjectsRelationship(NSArray<D> objects) |
static ERXAndQualifier |
ERXQ.and(NSArray<? extends EOQualifier> qualifiers)
Equivalent to new ERXAndQualifier(new NSArray(qualifiersArray).
|
static void |
ERXBatchFetchUtilities.batchFetch(EOEnterpriseObject sourceObject,
NSArray keypaths,
boolean skipFaultedSourceObjects)
Shortcut for batch fetching a single source object
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray<? extends EOEnterpriseObject> sourceObjects,
ERXKey<?>... keys)
Batch key the list of keys from the given source objects.
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
NSArray keypaths)
Defaults skipFaultedSourceObjects to false for backwards compatibility
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
NSArray keypaths)
Defaults skipFaultedSourceObjects to false for backwards compatibility
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
NSArray keypaths,
boolean skipFaultedSourceObjects)
Batch fetch relationships specified by keypaths for
sourceObjects .
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
NSArray keypaths,
boolean skipFaultedSourceObjects)
Batch fetch relationships specified by keypaths for
sourceObjects .
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
NSArray keypaths,
boolean skipFaultedSourceObjects,
int batchSize)
Overloads batchFetch(NSArray, NSArray, boolean) to batch through the
NSArray of sourceObjects batchSize at a time.
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
NSArray keypaths,
boolean skipFaultedSourceObjects,
int batchSize)
Overloads batchFetch(NSArray, NSArray, boolean) to batch through the
NSArray of sourceObjects batchSize at a time.
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
String keypath)
Shortcut for batch fetching a single keypath.
|
static void |
ERXBatchFetchUtilities.batchFetch(NSArray sourceObjects,
String keypath,
boolean skipFaultedSourceObjects)
Shortcut for batch fetching a single keypath.
|
static NSArray |
ERXBatchFetchUtilities.batchFetchAndRetrieve(NSArray sourceObjects,
String keypath)
Shortcut for batch fetching a single keypath and returns the fetched values.
|
static NSArray |
ERXBatchFetchUtilities.batchFetchAndRetrieve(NSArray sourceObjects,
String keypath,
boolean skipFaultedSourceObjects)
Shortcut for batch fetching a single keypath and returns the fetched values.
|
static void |
ERXEOAccessUtilities.batchFetchRelationship(EODatabaseContext databaseContext,
EORelationship relationship,
NSArray objects,
EOEditingContext editingContext,
boolean skipFaultedRelationships)
Batch fetch a relationship, optionally skipping any relationship that has
already faulted in its to-many relationship.
|
static void |
ERXEOAccessUtilities.batchFetchRelationship(EODatabaseContext databaseContext,
String entityName,
String relationshipName,
NSArray objects,
EOEditingContext editingContext,
boolean skipFaultedRelationships)
Batch fetch a relationship, optionally skipping any relationship that has already faulted in its to-many relationship.
|
static ERXFetchSpecificationBatchIterator |
ERXSQLQueryWithBindingsUtilities.batchIteratorForObjectsWithSqlWithBindings(EOEditingContext ec,
String entityName,
String query,
boolean refreshesCache,
int batchSize,
NSArray sortOrderings,
ERXSQLBinding... bindings)
Obtains a batch iterator for the objects resulting from the passed in SQL query with binded variables.
|
protected long |
ERXFetchResultCache.cacheTime(NSArray eos,
EOFetchSpecification fs)
Returns the time the result should stay in the cache.
|
static ERXSortOrdering.ERXSortOrderings |
ERXS.chain(NSArray<EOSortOrdering>... arr) |
static ERXOrQualifier |
ERXQ.containsAll(NSArray<String> keys,
String tokensWithWhitespace)
Returns a qualifier that evalutes to true when the value of any of the
given keys contains all of the given tokens (insensitively) in the search
string.
|
static ERXOrQualifier |
ERXQ.containsAny(NSArray<String> keys,
String tokensWithWhitespace)
Returns a qualifier that evalutes to true when the value of any of the
given keys contains any of the given tokens (insensitively) in the search
string.
|
ERXExistsQualifier |
ERXKey.containsAnyOfTheseObjects(NSArray<? extends ERXGenericRecord> valueArray)
Uses ERXExistsQualifier to build a qualifier that returns true if at least one the objects
specified is found in the to many relationship represented by this key.
|
ERXFetchSpecification<T> |
EOEnterpriseObjectClazz.createFetchSpecification(EOQualifier qualifier,
NSArray<EOSortOrdering> sortings)
Creates a fetch spec for the entity.
|
static String |
ERXEOAccessUtilities.createIndexSQLForEntities(NSArray entities)
Deprecated.
|
static String |
ERXEOAccessUtilities.createIndexSQLForEntities(NSArray entities,
NSArray externalTypesToIgnore)
Deprecated.
|
static String |
ERXEOAccessUtilities.createIndexSQLForEntities(NSArray entities,
NSArray externalTypesToIgnore)
Deprecated.
|
static String |
ERXEOAccessUtilities.createIndexSQLForEntitiesForOracle(NSArray entities)
Deprecated.
|
static String |
ERXEOAccessUtilities.createSchemaSQLForEntitiesInDatabaseContext(NSArray entities,
EODatabaseContext databaseContext,
boolean create,
boolean drop)
Deprecated.
|
static String |
ERXEOAccessUtilities.createSchemaSQLForEntitiesInModelWithName(NSArray entities,
String modelName)
Deprecated.
|
static String |
ERXEOAccessUtilities.createSchemaSQLForEntitiesInModelWithNameAndOptions(NSArray entities,
String modelName,
NSDictionary optionsCreate)
Deprecated.
|
static String |
ERXEOAccessUtilities.createSchemaSQLForEntitiesInModelWithNameAndOptionsForOracle9(NSArray entities,
String modelName,
NSDictionary optionsCreate)
Oracle 9 has a maximum length of 30 characters for table names, column names and constraint names.
|
static String |
ERXEOAccessUtilities.createSchemaSQLForEntitiesWithOptions(NSArray entities,
EODatabaseContext databaseContext,
NSDictionary optionsCreate)
Deprecated.
|
void |
ERXDatabaseContextMulticastingDelegate.databaseContextDidFetchObjects(EODatabaseContext dbCtxt,
NSArray array,
EOFetchSpecification fetchSpec,
EOEditingContext ec) |
void |
ERXDatabaseContextDelegate.databaseContextDidFetchObjects(EODatabaseContext dbc,
NSArray eos,
EOFetchSpecification fs,
EOEditingContext ec)
Sets the cache entry for the fetched objects and refreshes the timestamps
for fetched objects if batch faulting is enabled.
|
NSArray |
ERXDatabaseContextMulticastingDelegate.databaseContextWillOrderAdaptorOperations(EODatabaseContext dbCtxt,
NSArray databaseOps) |
NSArray |
ERXDatabaseContextMulticastingDelegate.databaseContextWillPerformAdaptorOperations(EODatabaseContext dbCtxt,
NSArray adaptorOps,
EOAdaptorChannel adChannel) |
NSArray |
ERXDatabaseContextDelegate.databaseContextWillPerformAdaptorOperations(EODatabaseContext dbCtxt,
NSArray adaptorOps,
EOAdaptorChannel adChannel)
Overridden to remove inserts and deletes of the "same" row.
|
static EOArrayDataSource |
ERXEOControlUtilities.dataSourceForArray(EOEditingContext ec,
String entityName,
NSArray array)
Simple utility method that will convert an array
of enterprise objects into an EOArrayDataSource.
|
static EOArrayDataSource |
ERXEOControlUtilities.dataSourceForArray(NSArray<? extends EOEnterpriseObject> array)
Simple utility method that will convert an array
of enterprise objects into an EOArrayDataSource.
|
static EOArrayDataSource |
ERXDummyRecord.dataSourceForObjects(EOEditingContext ec,
NSArray list) |
static NSMutableArray |
ERXEOControlUtilities.deletedObjects(EOEditingContext editingContext,
NSArray<String> entityNames,
EOQualifier qualifier)
Return the array of objects of the given type that have been deleted from
the editing context and match the given qualifier.
|
void |
ERXEC.deleteObjects(NSArray objects)
Utility to delete a bunch of objects.
|
EOModel |
ERXForwardingAdaptorChannel.describeModelWithTableNames(NSArray tableNames) |
static NSDictionary |
ERXEOEncodingUtilities.dictionaryOfFormValuesForEnterpriseObjects(NSArray eos,
String separator,
boolean encrypt)
Constructs the form values dictionary by first calling
the method
encodeEnterpriseObjectsPrimaryKeyForUrl
and then using the results of that to construct the dictionary. |
NSMutableDictionary |
ERXForwardingAdaptorChannel.dictionaryWithObjectsForAttributes(Object[] objects,
NSArray attributes) |
protected void |
ERXEC.didSaveChanges(NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects) |
protected void |
ERXEC.didSaveChanges(NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects) |
protected void |
ERXEC.didSaveChanges(NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects) |
static <T> NSArray<T> |
ERXEOControlUtilities.distinctValuesForKeyPath(EOEditingContext editingContext,
String entityName,
String keyPath,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings)
Returns an NSArray of distinct values available for the given entity and key path.
|
ERXSortOrdering.ERXSortOrderings |
ERXKey.dot(NSArray<EOSortOrdering> sortOrderings)
Simple cover method for
ERXKey.prefix(NSArray) . |
void |
ERXEC.Delegate.editingContextDidRevertObjects(EOEditingContext ec,
NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects)
If the delegate implements this method, this method is invoked
following a revert of an editing context.
|
void |
ERXEC.Delegate.editingContextDidRevertObjects(EOEditingContext ec,
NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects)
If the delegate implements this method, this method is invoked
following a revert of an editing context.
|
void |
ERXEC.Delegate.editingContextDidRevertObjects(EOEditingContext ec,
NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects)
If the delegate implements this method, this method is invoked
following a revert of an editing context.
|
void |
ERXEC.Delegate.editingContextWillRevertObjects(EOEditingContext ec,
NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects)
If the delegate implements this method, this method is invoked before
a revert of an editing context.
|
void |
ERXEC.Delegate.editingContextWillRevertObjects(EOEditingContext ec,
NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects)
If the delegate implements this method, this method is invoked before
a revert of an editing context.
|
void |
ERXEC.Delegate.editingContextWillRevertObjects(EOEditingContext ec,
NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects)
If the delegate implements this method, this method is invoked before
a revert of an editing context.
|
static String |
ERXEOEncodingUtilities.encodeEnterpriseObjectsPrimaryKeyForUrl(NSArray eos,
String separator,
boolean encrypt)
Encodes an array of enterprise objects for use in a url.
|
abstract void |
ERXEnterpriseObjectChangeListener.entitiesChanged(NSArray<T> entitiesInserted,
NSArray<T> entitiesUpdated,
NSArray<T> entitiesDeleted)
Called when the entity being listened to changes.
|
abstract void |
ERXEnterpriseObjectChangeListener.entitiesChanged(NSArray<T> entitiesInserted,
NSArray<T> entitiesUpdated,
NSArray<T> entitiesDeleted)
Called when the entity being listened to changes.
|
abstract void |
ERXEnterpriseObjectChangeListener.entitiesChanged(NSArray<T> entitiesInserted,
NSArray<T> entitiesUpdated,
NSArray<T> entitiesDeleted)
Called when the entity being listened to changes.
|
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.faultsForGlobalIDs(EOEditingContext ec,
NSArray<? extends EOGlobalID> gids)
Returns a NSArray containing EOEnterpriseObjects (actually faults...) for the provided EOGlobalIDs.
|
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.faultsForRawRowsFromEntity(EOEditingContext ec,
NSArray primKeys,
String entityName) |
NSArray<T> |
EOEnterpriseObjectClazz.faultsFromRawRows(EOEditingContext ec,
NSArray nsarray)
Constructs an array of faults for a given array
of primary keys in a given editing context for
the clazz's entity.
|
NSArray<T> |
EOEnterpriseObjectClazz.faultsMatchingQualifier(EOEditingContext ec,
EOQualifier eoqualifier,
NSArray<EOSortOrdering> sortOrderings)
Fetches an array of faults matching a given qualifier
and sorted by an array of sort orderings.
|
NSArray<T> |
EOEnterpriseObjectClazz.faultsMatchingValues(EOEditingContext ec,
NSDictionary nsdictionary,
NSArray<EOSortOrdering> sortOrderings)
Fetches an array of faults for a given set of criteria.
|
protected <T> NSArray<T> |
ERXQuery.fetch(EOSQLExpression expression,
NSArray<EOAttribute> fetchAttributes,
EOEditingContext ec,
NSDictionary<String,Object> initValues,
ERXQuery.RecordConstructor<T> recordConstructor)
Core fetch method.
|
static EOFetchSpecification |
ERXFetchSpecification.fetchSpec(String entityName,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints) |
static <T> NSArray<T> |
ERXQ.filtered(NSArray<T> array,
EOQualifier qualifier)
Equivalent to EOQualifier.filteredArrayWithQualifier(NSArray,
EOQualifier)
|
NSArray<T> |
EOEnterpriseObjectClazz.filteredArray(NSArray<T> array,
EOFetchSpecification spec,
NSDictionary bindings)
Filters an array with a given fetch spec.
|
static NSArray |
ERXEOControlUtilities.filteredObjectsWithQualifier(EOEditingContext editingContext,
NSArray objectsToFilter,
String entityName,
EOQualifier qualifier,
NSArray sortOrderings,
boolean usesDistinct,
boolean isDeep,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to filter an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.filteredObjectsWithQualifier(EOEditingContext editingContext,
NSArray objectsToFilter,
String entityName,
EOQualifier qualifier,
NSArray sortOrderings,
boolean usesDistinct,
boolean isDeep,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to filter an array of objects given a qualifier.
|
static <T> T |
ERXQ.first(NSArray<T> array,
EOQualifier qualifier)
Returns the first object that matches the qualifier in the given array
(or null if there is no match).
|
void |
ERXDatabase.forgetSnapshotsForGlobalIDs(NSArray array) |
static NSArray<EOGlobalID> |
ERXEOControlUtilities.globalIDsForObjects(NSArray<? extends EOEnterpriseObject> eos)
Returns a NSArray containing EOGlobalIDs from the provided eos.
|
static ERXKeyValueQualifier |
ERXQ.has(String key,
NSArray values)
Equivalent to new ERXToManyQualifier(key, values);
|
static ERXKeyValueQualifier |
ERXQ.hasAtLeast(String key,
NSArray values,
int min)
Equivalent to new ERXToManyQualifier(key, values);
|
ERXKeyValueQualifier |
ERXKey.hasValues(NSArray<T> values)
Equivalent to new ERXInQualifier(key, values);
|
static ERXKeyValueQualifier |
ERXQ.hasValues(String key,
NSArray values)
Equivalent to new ERXInQualifier(key, values);
|
ERXOrQualifier |
ERXKey.in(NSArray<T> values)
Equivalent to a new ERXOrQualifier of EOKeyValueQualifier with key equals
value for each value.
|
static ERXOrQualifier |
ERXQ.in(String key,
NSArray<?> values)
Equivalent to a new ERXOrQualifier of EOKeyValueQualifier with key equals
value for each value.
|
static NSMutableArray |
ERXEOControlUtilities.insertedObjects(EOEditingContext editingContext,
NSArray<String> entityNames,
EOQualifier qualifier)
Returns the array of objects of the given type that have been inserted into
the editing context and match the given qualifier.
|
void |
ERXEC.invalidateObjectsWithGlobalIDs(NSArray nsarray) |
static EOQualifier |
ERXQ.isIn(NSArray<? extends ERXGenericRecord> valueArray)
Return a OR qualifier of identity qualifiers using each value from the param array
|
protected boolean |
ERXEnterpriseObjectArrayCache.isNotFound(NSArray<EOGlobalID> gids) |
NSArray |
ERXCustomObject.localInstancesOf(NSArray eos) |
<T extends EOEnterpriseObject> |
ERXGenericRecord.localInstancesOf(NSArray<T> eos) |
<T extends EOEnterpriseObject> |
ERXEnterpriseObject.localInstancesOf(NSArray<T> eos)
Returns an array of EOs in the same editing context as the caller.
|
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.localInstancesOfObjects(EOEditingContext ec,
NSArray<T> eos)
Provides the same functionality as the equivalent method
in
EOUtilities
except it will use the localInstanceOfObject
method from this utilities class which has a few enhancements. |
void |
ERXForwardingAdaptorChannel.lockRowComparingAttributes(NSArray atts,
EOEntity entity,
EOQualifier qualifier,
NSDictionary snapshot) |
ERXAndQualifier |
ERXKey.notIn(NSArray<T> values)
Equivalent to a new ERXAndQualifier of
EONotQualifier(EOKeyValueQualifier) with key equals value for each value.
|
static ERXAndQualifier |
ERXQ.notIn(String key,
NSArray values)
Equivalent to a new ERXAndQualifier of
EONotQualifier(EOKeyValueQualifier) with key equals value for each value.
|
NSArray<D> |
ERXUnmodeledToManyRelationship.objects(EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings,
boolean fetch) |
static NSArray |
ERXEOControlUtilities.objectsForFaults(EOEditingContext ec,
NSArray possibleFaults)
Triggers all faults in an efficient manner.
|
static NSArray |
ERXEOControlUtilities.objectsForFaultWithSortOrderings(EOEditingContext ec,
NSArray possibleFaults,
NSArray sortOrderings)
Uses
ERXEOControlUtilities.objectForFaults to turn the faults into objects, then does in memory
ordering with EOSortOrdering.EOSortOrdering.sortedArrayUsingKeyOrderArray() |
static NSArray |
ERXEOControlUtilities.objectsForFaultWithSortOrderings(EOEditingContext ec,
NSArray possibleFaults,
NSArray sortOrderings)
Uses
ERXEOControlUtilities.objectForFaults to turn the faults into objects, then does in memory
ordering with EOSortOrdering.EOSortOrdering.sortedArrayUsingKeyOrderArray() |
static <T extends EOEnterpriseObject> |
ERXEOControlUtilities.objectsForGlobalIDs(EOEditingContext ec,
NSArray<EOGlobalID> globalIDs)
Aggregate method for
EOEditingContext.objectForGlobalID() . |
NSArray<T> |
EOEnterpriseObjectClazz.objectsMatchingQualifier(EOEditingContext ec,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrdering) |
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext ec,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
boolean includeNewObjects)
Calls objectsWithQualifier(ec, entityName, qualifier, prefetchKeyPaths, includeNewObjects, false).
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext _editingContext,
String _entityName,
EOQualifier _qualifier,
NSArray _prefetchKeyPaths,
boolean _includeNewObjects,
boolean _includeNewObjectsInParentEditingContext) |
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
NSArray sortOrderings,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
NSArray sortOrderings,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
NSArray sortOrderings,
int fetchLimit,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifier(EOEditingContext editingContext,
String entityName,
EOQualifier qualifier,
NSArray prefetchKeyPaths,
NSArray sortOrderings,
int fetchLimit,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContext,
boolean filterUpdatedObjects,
boolean removeDeletedObjects)
Utility method used to fetch an array of objects given a qualifier.
|
NSArray<T> |
EOEnterpriseObjectClazz.objectsWithQualifierFormat(EOEditingContext ec,
String qualifier,
NSArray args)
Fetches all of the objects matching the given qualifier
format corresponding to the clazz's entity using the
given editing context.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifierFormat(EOEditingContext ec,
String entityName,
String qualifierFormat,
NSArray args,
NSArray prefetchKeyPaths,
boolean includeNewObjects)
Calls
objectsWithQualifierFormat(ec, entityName, qualifierFormat, args, prefetchKeyPaths, includeNewObjects, false) . |
static NSArray |
ERXEOControlUtilities.objectsWithQualifierFormat(EOEditingContext ec,
String entityName,
String qualifierFormat,
NSArray args,
NSArray prefetchKeyPaths,
boolean includeNewObjects)
Calls
objectsWithQualifierFormat(ec, entityName, qualifierFormat, args, prefetchKeyPaths, includeNewObjects, false) . |
static NSArray |
ERXEOControlUtilities.objectsWithQualifierFormat(EOEditingContext ec,
String entityName,
String qualifierFormat,
NSArray args,
NSArray prefetchKeyPaths,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContexts)
Enhanced version of the utility method found in EOUtilities.
|
static NSArray |
ERXEOControlUtilities.objectsWithQualifierFormat(EOEditingContext ec,
String entityName,
String qualifierFormat,
NSArray args,
NSArray prefetchKeyPaths,
boolean includeNewObjects,
boolean includeNewObjectsInParentEditingContexts)
Enhanced version of the utility method found in EOUtilities.
|
static EOEnterpriseObject |
ERXEOControlUtilities.objectWithPrimaryKeyValue(EOEditingContext ec,
String entityName,
Object primaryKeyValue,
NSArray prefetchingKeyPaths)
Fetches an enterprise object based on a given primary key value.
|
static EOEnterpriseObject |
ERXEOControlUtilities.objectWithPrimaryKeyValue(EOEditingContext ec,
String entityName,
Object primaryKeyValue,
NSArray prefetchingKeyPaths,
boolean refreshRefetchedObjects)
Fetches an enterprise object based on a given primary key value.
|
static EOEnterpriseObject |
ERXEOControlUtilities.objectWithPrimaryKeyValue(EOEditingContext ec,
String entityName,
Object primaryKeyValue,
NSArray prefetchingKeyPaths,
boolean refreshRefetchedObjects,
boolean throwIfMissing)
Fetches an enterprise object based on a given primary key value.
|
static <T> T |
ERXQ.one(NSArray<T> array,
EOQualifier qualifier)
Returns the one object that matches the qualifier in the given array (or
null if there is no match).
|
static ERXOrQualifier |
ERXQ.or(NSArray<? extends EOQualifier> qualifiers)
Equivalent to new ERXOrQualifier(new NSArray(qualifiersArray).
|
static EOQualifier |
ERXEOControlUtilities.orQualifierForKeyPaths(NSArray keyPaths,
NSSelector selector,
NSArray values)
Creates an OR qualifier with the given selector for all the given key
paths and all the given search terms.
|
static EOQualifier |
ERXEOControlUtilities.orQualifierForKeyPaths(NSArray keyPaths,
NSSelector selector,
NSArray values)
Creates an OR qualifier with the given selector for all the given key
paths and all the given search terms.
|
static EOQualifier |
ERXEOControlUtilities.orQualifierForKeyPaths(NSArray keyPaths,
NSSelector selector,
Object value)
Creates an OR qualifier with the given selector for all the given key paths.
|
void |
ERXEnterpriseObject.Processor.perform(EOEditingContext ec,
NSArray eos) |
void |
ERXForwardingAdaptorChannel.performAdaptorOperations(NSArray adaptorOps) |
static void |
ERXAdaptorOperationWrapper.performWrappedAdaptorOperations(NSArray ops)
Unwraps and performs the supplied adaptor operations.
|
ERXSortOrdering.ERXSortOrderings |
ERXKey.prefix(NSArray<EOSortOrdering> sortOrderings)
Prefix the keys in the given array of sort orderings with this key.
|
static EOFetchSpecification |
ERXEOControlUtilities.primaryKeyFetchSpecificationForEntity(EOEditingContext ec,
String entityName,
EOQualifier eoqualifier,
NSArray<EOSortOrdering> sortOrderings,
NSArray<String> additionalKeys)
Constructs a fetch specification that will only fetch the primary
keys for a given qualifier.
|
static EOFetchSpecification |
ERXEOControlUtilities.primaryKeyFetchSpecificationForEntity(EOEditingContext ec,
String entityName,
EOQualifier eoqualifier,
NSArray<EOSortOrdering> sortOrderings,
NSArray<String> additionalKeys)
Constructs a fetch specification that will only fetch the primary
keys for a given qualifier.
|
EOFetchSpecification |
EOEnterpriseObjectClazz.primaryKeyFetchSpecificationForEntity(EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings,
NSArray<String> additionalKeys)
Constructs a fetch specification that will only fetch the primary
keys for a given qualifier.
|
EOFetchSpecification |
EOEnterpriseObjectClazz.primaryKeyFetchSpecificationForEntity(EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings,
NSArray<String> additionalKeys)
Constructs a fetch specification that will only fetch the primary
keys for a given qualifier.
|
static NSArray |
ERXEOAccessUtilities.primaryKeysForObjects(NSArray<? extends EOEnterpriseObject> eos)
Creates an array containing all of the primary keys of the given objects.
|
NSArray |
EOEnterpriseObjectClazz.primaryKeysMatchingQualifier(EOEditingContext ec,
EOQualifier eoqualifier,
NSArray sortOrderings)
Fetches an array of primary keys matching a given qualifier
and sorted with a given array of sort orderings.
|
static NSArray |
ERXEOControlUtilities.primaryKeysMatchingQualifier(EOEditingContext ec,
String entityName,
EOQualifier eoqualifier,
NSArray<EOSortOrdering> sortOrderings)
Fetches an array of primary keys matching a given qualifier
and sorted with a given array of sort orderings.
|
NSArray |
EOEnterpriseObjectClazz.primaryKeysMatchingValues(EOEditingContext ec,
NSDictionary nsdictionary,
NSArray sortOrderings)
Fetches an array of primary keys matching the values
in a given dictionary.
|
static EOQualifier |
ERXEOAccessUtilities.qualifierFromAttributes(NSArray<EOAttribute> attributes,
NSDictionary values)
Creates an AND qualifier of EOKeyValueQualifiers for every keypath in the given array of attributes.
|
static EOQualifier |
ERXEOControlUtilities.qualifierMatchingAnyKey(NSArray keys,
NSSelector selector,
Object value)
Creates an OR qualifier of EOKeyValueQualifiers for every keypath in the given array of keys.
|
static NSArray |
ERXEOAccessUtilities.rawRowsForSQLExpression(EOEditingContext ec,
EOModel model,
EOSQLExpression expression,
NSArray<EOAttribute> attributes)
Returns the raw rows for the given EOSQLExpression.
|
void |
ERXDatabase.recordSnapshotForSourceGlobalID(NSArray gids,
EOGlobalID gid,
String name) |
static void |
ERXDummyRecord.registerDescriptionForClass(Class clazz,
NSArray keys) |
void |
ERXUnmodeledToManyRelationship.removeFromObjectsRelationship(NSArray<D> objects) |
void |
ERXGenericRecord.removeObjectsFromBothSidesOfRelationshipWithKey(NSArray<? extends EOEnterpriseObject> objects,
String key) |
void |
ERXEnterpriseObject.removeObjectsFromBothSidesOfRelationshipWithKey(NSArray<? extends EOEnterpriseObject> objects,
String key)
Removes a collection of objects to a given relationship by calling
removeObjectFromBothSidesOfRelationshipWithKey for all
objects in the collection. |
void |
ERXCustomObject.removeObjectsFromBothSidesOfRelationshipWithKey(NSArray objects,
String key) |
void |
ERXGenericRecord.removeObjectsFromPropertyWithKey(NSArray<? extends EOEnterpriseObject> objects,
String key) |
void |
ERXEnterpriseObject.removeObjectsFromPropertyWithKey(NSArray<? extends EOEnterpriseObject> objects,
String key)
Removes a collection of objects to a given relationship by calling
removeObjectFromPropertyWithKey for all
objects in the collection. |
void |
ERXCustomObject.removeObjectsFromPropertyWithKey(NSArray objects,
String key) |
static <T> T |
ERXQ.requiredOne(NSArray<T> array,
EOQualifier qualifier)
Returns the one object that matches the qualifier in the given array (or
throws if there is no match).
|
void |
ERXForwardingAdaptorChannel.selectAttributes(NSArray attributes,
EOFetchSpecification fetchSpecification,
boolean yn,
EOEntity entity) |
void |
ERXGroupingFetchSpecification.setAggregates(NSArray<er.extensions.eof.ERXGroupingFetchSpecification.Aggregate> value) |
void |
ERXForwardingAdaptorChannel.setAttributesToFetch(NSArray attributes) |
protected void |
ERXEnterpriseObjectArrayCache.setCachedArrayForKey(NSArray<EOGlobalID> gids,
Object key) |
static void |
ERXDatabaseContextDelegate.setCurrentBatchObjects(NSArray arr) |
void |
ERXFetchResultCache.setObjectsForFetchSpecification(EODatabaseContext dbc,
EOEditingContext ec,
NSArray<? extends EOEnterpriseObject> eos,
EOFetchSpecification fs)
Registers eos for a given fetch spec.
|
void |
ERXEnterpriseObjectArrayCache.setObjectsForKey(NSArray<? extends EOEnterpriseObject> bugs,
Object key)
Add a list of objects to the cache with the given key.
|
void |
ERXDatabaseDataSource.setPrefetchingRelationshipKeyPaths(NSArray<String> relationshipKeyPaths) |
void |
ERXGroupingFetchSpecification.setRawRowKeyPaths(NSArray keyPaths) |
void |
ERXDatabase.setResultCache(NSArray cache,
String name) |
void |
ERXKeyFilter.setSortOrderings(NSArray<EOSortOrdering> sortOrderings)
Sets the sort orderings that will be applied by this key filter.
|
protected static void |
ERXQuery.setupAdaptorChannelEOAttributes(EOAdaptorChannel adaptorChannel,
NSArray<EOAttribute> selectAttributes) |
static NSArray |
ERXEOAccessUtilities.snapshotsForObjectsFromRelationshipNamed(NSArray eos,
String relKey)
Given an array of EOs, returns snapshot dictionaries for the given
related objects.
|
protected NSDictionary |
ERXObjectStoreCoordinatorSynchronizer.LocalChange.snapshotsGroupedByEntity(NSArray objects,
EOObjectStoreCoordinator osc)
Returns a dictionary of snapshots where the key is the entity name
and the value an array of snapshots.
|
ERXFetchSpecification<T> |
ERXFetchSpecification.sort(NSArray<EOSortOrdering> sortOrderings)
Sets the sort orderings on this fetch specification and returns "this" for chaining.
|
static <T> void |
ERXS.sort(NSMutableArray<T> array,
NSArray<EOSortOrdering> orderings) |
<T> NSArray<T> |
ERXSortOrdering.sorted(NSArray<T> array)
Returns an array sorted with this sort ordering.
|
<T> NSArray<T> |
ERXSortOrdering.ERXSortOrderings.sorted(NSArray<T> array)
Returns an array sorted with this sort ordering.
|
static <T> NSArray<T> |
ERXS.sorted(NSArray<T> array,
EOSortOrdering... orderings) |
static <T> NSArray<T> |
ERXS.sorted(NSArray<T> array,
NSArray<EOSortOrdering> orderings) |
static <T> NSArray<T> |
ERXS.sorted(NSArray<T> array,
NSArray<EOSortOrdering> orderings) |
static String |
ERXEOAccessUtilities.sqlWhereClauseStringForKey(EOSQLExpression e,
String key,
NSArray valueArray)
Deprecated.
|
ERXSortOrdering.ERXSortOrderings |
ERXSortOrdering.then(NSArray<EOSortOrdering> nextSortOrderings)
Returns ERXSortOrderings with this sort ordering followed by the provided
array of next sort orderings.
|
static NSMutableArray |
ERXEOControlUtilities.updatedObjects(EOEditingContext editingContext,
NSArray<String> entityNames,
EOQualifier qualifier)
Returns the array of objects of the given type that have been updated in
the editing context and match the given qualifier.
|
protected void |
ERXEC.willSaveChanges(NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects) |
protected void |
ERXEC.willSaveChanges(NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects) |
protected void |
ERXEC.willSaveChanges(NSArray insertedObjects,
NSArray updatedObjects,
NSArray deletedObjects) |
static NSArray |
ERXAdaptorOperationWrapper.wrappedAdaptorOperations(NSArray adaptorOps)
Returns an array of ERXAdaptorOperations that can be serialzed to the transport of your choice.
|
Constructor and Description |
---|
ERXFaultArray(EOEditingContext ec,
NSArray<EOGlobalID> array) |
ERXFaultArray(NSArray<T> array) |
ERXFetchSpecification(String entityName,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings) |
ERXFetchSpecification(String entityName,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings,
boolean usesDistinct,
boolean isDeep,
NSDictionary hints) |
ERXFetchSpecificationBatchIterator(EOFetchSpecification fetchSpecification,
NSArray pkeys,
EOEditingContext ec,
int batchSize)
Constructs a fetch specification iterator for a fetch specification,
an optional set of pre-fetched primary keys
and a batch size.
|
ERXGroupingFetchSpecification(String entityName,
EOQualifier qualifier,
NSArray sortOrderings,
NSArray<er.extensions.eof.ERXGroupingFetchSpecification.Aggregate> aggregates,
EOQualifier havingQualifier) |
ERXGroupingFetchSpecification(String entityName,
EOQualifier qualifier,
NSArray sortOrderings,
NSArray<er.extensions.eof.ERXGroupingFetchSpecification.Aggregate> aggregates,
EOQualifier havingQualifier) |
ERXSortOrderings(NSArray<EOSortOrdering> sortOrderings)
Constructs an ERXSortOrderings with the array of sort orders.
|
ToManySnapshotUpdated(EOGlobalID sourceGID,
String name,
NSArray originalToManyGIDs,
NSArray newToManyGIDs) |
ToManySnapshotUpdated(EOGlobalID sourceGID,
String name,
NSArray originalToManyGIDs,
NSArray newToManyGIDs) |
ToManySnapshotUpdated(EOGlobalID sourceGID,
String name,
NSArray addedGIDs,
NSArray removedGIDs,
boolean removeAll) |
ToManySnapshotUpdated(EOGlobalID sourceGID,
String name,
NSArray addedGIDs,
NSArray removedGIDs,
boolean removeAll) |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERXToManyQualifier.elements() |
NSArray<String> |
ERXFullTextQualifier.terms()
Returns the array of search terms for this qualifier.
|
protected static NSArray |
ERXPrimaryKeyListQualifier.validateObjects(NSArray eos)
Simple validation routine used to ensure that
the objects being passed in are enterprise
objects and have more than one in the array.
|
NSArray |
ERXInQualifier.values() |
Modifier and Type | Method and Description |
---|---|
protected static String |
ERXPrimaryKeyListQualifier.primaryKeyNameForObjects(NSArray eos)
Calculates the primary key attribute name for an
array of enterprise objects.
|
protected static NSArray |
ERXPrimaryKeyListQualifier.validateObjects(NSArray eos)
Simple validation routine used to ensure that
the objects being passed in are enterprise
objects and have more than one in the array.
|
Constructor and Description |
---|
ERXFullTextQualifier(String keyPath,
ERXFullTextQualifier.MatchType matchType,
NSArray<String> terms)
Constructs an ERXFullTextQualifier defaulting indexName to the same as
keyPath.
|
ERXFullTextQualifier(String keyPath,
String indexName,
ERXFullTextQualifier.MatchType matchType,
NSArray<String> terms)
Constructs an ERXFullTextQualifier.
|
ERXInQualifier(String key,
NSArray values)
Constructs an in qualifer for a given
attribute name and an array of values.
|
ERXInQualifier(String key,
NSArray values,
int padToSize)
Constructs an in qualifier for a given
attribute name and an array of values.
|
ERXPrimaryKeyListQualifier(NSArray eos)
Constructs a primary key list qualifer for a given
set of enterprise objects.
|
ERXPrimaryKeyListQualifier(String key,
NSArray eos)
Constructs a primary key list qualifer for a given
set of enterprise objects and the primary key
attribute name.
|
ERXPrimaryKeyListQualifier(String key,
String foreignKey,
NSArray eos)
Constructs a primary key list qualifer for a given
set of enterprise objects, the primary key
attribute name and a foreign key.
|
ERXToManyQualifier(String toManyKey,
NSArray elements) |
ERXToManyQualifier(String toManyKey,
NSArray elements,
int minCount) |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
ERXUnitAwareDecimalFormat.unitPrefixArray |
Modifier and Type | Method and Description |
---|---|
static NSArray |
ERXUnitAwareDecimalFormat.UnitPrefix.unitPrefixArrayForUnit(String unitName) |
Modifier and Type | Method and Description |
---|---|
static ERXUnitAwareDecimalFormat.UnitPrefix |
ERXUnitAwareDecimalFormat.UnitPrefix.findAppropriatePrefix(double number,
NSArray unitPrefixArray) |
Constructor and Description |
---|
ERXUnitAwareDecimalFormat(NSArray unitPrefixArray) |
ERXUnitAwareDecimalFormat(String pattern,
DecimalFormatSymbols symbols,
NSArray unitPrefixArray) |
Modifier and Type | Class and Description |
---|---|
class |
ERXMutableArray<E>
Custom subclass of NSMutableArray.
|
static class |
ERXMutableArray.ThreadSafeArray<V>
Simple thread safe wrapper.
|
Modifier and Type | Field and Description |
---|---|
static NSArray |
ERXStringUtilities.SORT_ASCENDING
Holds the ascending
EOSortOrdering s |
static NSArray |
ERXStringUtilities.SORT_DESCENDING
Holds the ascending
EOSortOrdering s |
Modifier and Type | Method and Description |
---|---|
static NSArray |
ERXUtilities.allFrameworkNames()
Utility method to get all of the framework names that
have been loaded into the application.
|
NSArray<K> |
ERXMutableDictionary.ThreadSafeDictionary.allKeys() |
NSArray<K> |
ERXExpiringCache.allKeys()
Returns all keys.
|
NSArray<K> |
ERXMutableDictionary.ThreadSafeDictionary.allKeysForObject(Object object) |
static NSArray<ERXProperties.Property> |
ERXProperties.allProperties()
全プロパティーの配列を戻します
|
NSArray<E> |
ERXRoundRobinCollection.array() |
static NSArray<File> |
ERXFileUtilities.arrayByAddingFilesInDirectory(File directory,
boolean recursive)
Creates a new NSArray which contains all files in the specified directory.
|
NSArray<V> |
ERXMutableArray.ThreadSafeArray.arrayByAddingObject(V object) |
NSArray<V> |
ERXMutableArray.ThreadSafeArray.arrayByAddingObjectsFromArray(NSArray<? extends V> otherArray) |
static <T> NSArray<T> |
ERXArrayUtilities.arrayByAddingObjectsFromArrayWithoutDuplicates(Collection<? extends T> array1,
Collection<? extends T> array2)
Creates an array preserving order by adding all of the
non-duplicate values from the second array to the first.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayByRemovingFirstObject(NSArray<T> array)
Creates an array that has all of the objects of the parameter array
without the first object.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayBySelectingInstancesOfClass(Collection<?> array,
Class<T> aClass)
Prunes an array for only instances of the given class.
|
static NSArray<?> |
ERXPropertyListSerialization.arrayForBinaryStream(InputStream is) |
static <E> NSArray<E> |
ERXPropertyListSerialization.arrayForJSONString(String value)
Parses the JSON formatted
string and returns the resulting property list as an NSArray. |
static NSArray<String> |
ERXProperties.arrayForKey(String s)
Cover method for returning an NSArray for a
given system property.
|
static NSArray<?> |
ERXArrayUtilities.arrayForKeysPath(NSArray<?> array,
NSArray<String> keys)
Returns an array of dictionaries containing the key/value pairs for the given paths.
|
static NSArray<String> |
ERXProperties.arrayForKeyWithDefault(String s,
NSArray<String> defaultValue)
Cover method for returning an NSArray for a
given system property and set a default value if not given.
|
static <E> NSArray<E> |
ERXPropertyListSerialization.arrayForString(String value)
Parses the property list representation
string and returns the resulting property list as an NSArray. |
static <E> NSArray<E> |
ERXPropertyListSerialization.arrayForString(String value,
boolean forceXML)
Parses the property list representation
string and returns the resulting property list as an NSArray. |
static NSArray |
ERXArrayUtilities.arrayFromPropertyList(String name,
NSBundle bundle)
Creates an NSArray from a resource associated with a given bundle
that is in property list format.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayMinusArray(Collection<T> array,
Collection<?> minus)
Subtracts the contents of one array from another.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayMinusObject(Collection<T> array,
T object)
Subtracts a single object from an array.
|
static NSArray |
ERXValueUtilities.arrayValue(Object obj)
Basic utility method for reading NSArray values which works also with
Strings.
|
static NSArray |
ERXValueUtilities.arrayValueWithDefault(Object obj,
NSArray def)
Basic utility method for reading
NSArray values which also
works with serialized NSArrays and comma separated items. |
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithObjectsAtIndexesSwapped(NSArray<T> array,
int indexOfObject1,
int indexOfObject2)
Deprecated.
use
ERXArrayUtilities.swapObjects(NSArray, int, int) instead |
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithObjectsSwapped(NSArray<T> array,
Object object1,
Object object2)
Deprecated.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithoutDuplicateKeyValue(Iterable<T> objects,
ERXKey<?> keyPath)
Filters out duplicates of an array of objects
based on the value of the given key path off of those objects.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithoutDuplicateKeyValue(Iterable<T> objects,
String keyPath)
Filters out duplicates of an array of objects
based on the value of the given key path off of those objects.
|
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithoutDuplicates(Collection<T> array)
Filters out all of the duplicate objects in
a given array.
|
static <E> NSArray<E> |
ERXPropertyListSerialization.arrayWithPathURL(URL url)
Converts a java.net.URL into a property list and returns the resulting property list as an NSArray.
|
static <E> NSArray<E> |
ERXPropertyListSerialization.arrayWithPathURL(URL url,
boolean forceXML)
Converts a java.net.URL into a property list and returns the resulting property list as an NSArray.
|
static <T> NSArray<NSArray<T>> |
ERXArrayUtilities.batchedArrayWithSize(NSArray<T> array,
int batchSize)
Batches an NSArray into sub-arrays of the given size.
|
static NSArray<String> |
ERXProperties.componentsSeparatedByString(String key,
String separator)
Returns an array of strings separated with the given separator string.
|
static NSArray<String> |
ERXProperties.componentsSeparatedByStringWithDefault(String key,
String separator,
NSArray<String> defaultValue)
Returns an array of strings separated with the given separator string.
|
static <T> NSArray<T> |
ERXArrayUtilities.deepClone(NSArray<T> array,
boolean onlyCollections)
Returns a deep clone of the given array.
|
NSArray |
ERXMulticastingDelegate.delegates()
This method returns an array of
com.webobjects.foundation._NSDelegate , not
the delegate objects originally added by calling addDelegate... |
static NSArray |
ERXUtilities.deletedObjectsPKeys(EOEditingContext ec)
Utility method for returning all of the primary keys for
all of the objects that are marked for deletion in
the editing context.
|
static <T> NSArray<T> |
ERXArrayUtilities.distinct(Collection<T> array)
Shorter name for arrayWithoutDuplicates, which I always forget the name of.
|
static NSArray |
ERXUtilities.entitiesForModelGroup(EOModelGroup group)
Simple utility method for getting all of the
entities for all of the models of a given
model group.
|
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithEntityFetchSpecification(NSArray<T> array,
String entity,
String fetchSpec)
Filters a given array with a named fetch specification.
|
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithEntityFetchSpecification(NSArray<T> array,
String entity,
String fetchSpec,
NSDictionary<String,?> bindings)
Filters a given array with a named fetch specification and bindings.
|
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithQualifierEvaluation(Enumeration<T> enumeration,
EOQualifierEvaluation qualifier)
Deprecated.
|
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithQualifierEvaluation(Iterable<T> iterable,
EOQualifierEvaluation qualifier)
Filters any kinds of collections that implement
Iterable
interface such as NSArray or NSSet using the
EOQualifierEvaluation interface. |
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithQualifierEvaluation(Iterator<T> iterator,
EOQualifierEvaluation qualifier)
Deprecated.
|
static NSArray |
ERXArrayUtilities.flatten(NSArray<?> array)
Recursively flattens an array of arrays and individual
objects into a single array of elements.
|
static NSArray |
ERXArrayUtilities.flatten(NSArray<?> array,
boolean filterDuplicates)
Recursively flattens an array of arrays and individual
objects into a single array of elements.
|
static NSArray |
ERXMutableArray.fromBlob(NSData d) |
static NSArray |
ERXMutableArray.fromPropertyList(String arrayAsString) |
static NSArray |
ERXStringUtilities.fuzzyMatch(String name,
String entityName,
String propertyKey,
String synonymsKey,
EOEditingContext ec,
ERXFuzzyMatchCleaner cleaner,
NSArray sortOrderings)
Fuzzy matching is useful for catching user entered typos.
|
NSArray<V> |
ERXMutableArray.ThreadSafeArray.immutableClone() |
static <T> NSArray<T> |
ERXArrayUtilities.intersectingElements(Collection<? extends T> array1,
Collection<? extends T> array2)
Intersects the elements of two arrays.
|
NSArray |
ERXSimpleTemplateParser.keysInTemplate(String template,
String delimiter)
Calculates the set of keys used in a given template
for a given delimiter.
|
static <T> NSArray<T> |
ERXDictionaryUtilities.keysSortedByValueAscending(NSDictionary<T,?> d) |
NSArray<V> |
ERXMutableDictionary.ThreadSafeDictionary.objectsForKeys(NSArray<? extends K> keys,
V notFoundMarker) |
static <T> NSArray<T> |
ERXArrayUtilities.objectsWithValueForKeyPath(Collection<T> array,
Object value,
String keyPath)
Walks over an array and returns an array of objects from that array that have a particular
value for a particular key path.
|
static <T,V> NSArray<T> |
ERXArrayUtilities.objectsWithValueForKeyPath(Collection<T> array,
V value,
ERXKey<V> keyPath)
Walks over an array and returns an array of objects from that array that have a particular
value for a particular key path.
|
static NSArray |
ERXProperties.optionalConfigurationFiles()
Gets an array of optionally defined configuration files.
|
static NSArray |
ERXProperties.pathsForUserAndBundleProperties()
Returns an array of paths to the
Properties and
WebObjects.properties files contained in the
application/framework bundles and home directory. |
static NSArray<String> |
ERXProperties.pathsForUserAndBundleProperties(boolean reportLoggingEnabled) |
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValues(NSArray<T> array)
Removes all occurrences of NSKeyValueCoding.NullValue in the provided array
|
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValues(NSArray<T> target,
NSArray<T> array)
Removes all occurrences of NSKeyValueCoding.NullValue in the provided array
|
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValuesFromEnd(NSArray<T> array)
removes all occurrences of NSKeyValueCoding.Null from the end of the array
|
static <T> NSArray<T> |
ERXArrayUtilities.reverse(List<T> array)
Reverses the elements of an array.
|
static <T> NSArray<T> |
ERXSetUtilities.sortedArrayFromSet(NSSet<T> set,
EOSortOrdering... orderings)
Takes an unordered set and creates a sorted array from its elements.
|
static <T> NSArray<T> |
ERXSetUtilities.sortedArrayFromSet(NSSet<T> set,
NSArray<EOSortOrdering> orderings)
Takes an unordered set and creates a sorted array from its elements.
|
static <T> NSArray<T> |
ERXSetUtilities.sortedArrayFromSet(NSSet<T> set,
NSComparator comparator)
Takes an unordered set and creates a sorted array from its elements.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKey(NSArray<T> array,
String key)
Sorts a given array with a key in ascending fashion.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKey(NSArray<T> array,
String key,
NSSelector selector)
Sorts a given array with a key in ascending fashion.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKeys(NSArray<T> array,
NSArray<String> keys,
NSSelector selector)
Sorts a given array with a set of keys according to the given selector.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArrayUsingComparator(NSArray<T> array,
NSComparator comparator)
Just like the method
sortedArrayUsingComparator(NSComparator) ,
except it catches the NSComparator.ComparisonException and, if thrown,
it wraps it in a runtime exception. |
NSArray<V> |
ERXMutableArray.ThreadSafeArray.sortedArrayUsingComparator(NSComparator comparator) |
static NSArray<ERXKeyValuePair> |
ERXKeyValueCodingUtilities.staticStringsForClass(Class c)
Returns final strings constants from an interface or class.
|
static NSArray<String> |
ERXDictionaryUtilities.stringKeysSortedAscending(NSDictionary<String,?> d) |
NSArray<V> |
ERXMutableArray.ThreadSafeArray.subarrayWithRange(NSRange range) |
static <T> NSArray<T> |
ERXArrayUtilities.swapObjects(NSArray<T> array,
int indexA,
int indexB)
Swaps two objects at the given indexes in an array and returns a new
modified array.
|
static <T> NSArray<T> |
ERXArrayUtilities.swapObjects(NSArray<T> array,
T a,
int indexB)
Swaps the object a with the object at the given index in an array and returns
a new modified array.
|
static <T> NSArray<T> |
ERXArrayUtilities.swapObjects(NSArray<T> array,
T a,
T b)
Swaps the objects in an array and returns a new modified array.
|
static <T> NSArray<T> |
ERXMutableArray.synchronizedArray(NSArray<T> array) |
NSArray<Object> |
ERXPropertyListSerialization._BinaryPListParser.BinaryArray.toNSArray() |
static NSArray |
ERXArrayUtilities.valuesForKeyPaths(Object source,
Collection<String> keyPaths)
Performs multiple key-value coding calls against an array or an object.
|
Modifier and Type | Method and Description |
---|---|
static <T,K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByKeyPath(Collection<T> objects,
ERXKey<K> keyPath,
boolean includeNulls,
ERXKey<V> valueKeyPath)
Starting with an array of KeyValueCoding-compliant objects and a keyPath,
this method calls valueForKey on each object in the array and groups the
contents of the array, using the result of the valueForKey call as a key
in a dictionary.
|
static <T,K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByKeyPath(Collection<T> objects,
ERXKey<K> keyPath,
K nullGroupingKey,
ERXKey<V> valueKeyPath)
Starting with an array of KeyValueCoding-compliant objects and a keyPath,
this method calls valueForKey on each object in the array and groups the
contents of the array, using the result of the valueForKey call as a key
in a dictionary.
|
static <T,K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByKeyPath(Collection<T> objects,
String keyPath,
boolean includeNulls,
String valueKeyPath)
Starting with an array of KeyValueCoding-compliant objects and a keyPath,
this method calls valueForKey on each object in the array and groups the
contents of the array, using the result of the valueForKey call as a key
in a dictionary.
|
static <K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByKeyPath(Collection<V> objects,
ERXKey<K> keyPath)
Starting with an array of KeyValueCoding-compliant objects and a keyPath,
this method calls valueForKey on each object in the array and groups the
contents of the array, using the result of the valueForKey call as a key
in a dictionary.
|
static <K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByKeyPath(Collection<V> objects,
String keyPath)
Starting with an array of KeyValueCoding-compliant objects and a keyPath,
this method calls valueForKey on each object in the array and groups the
contents of the array, using the result of the valueForKey call as a key
in a dictionary.
|
static <T,K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByToManyKeyPath(Collection<T> objects,
ERXKey<K> keyPath,
K nullGroupingKey,
ERXKey<V> valueKeyPath)
Typesafe variant of arrayGroupedByToManyKeyPath.
|
static <K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByToManyKeyPath(Collection<V> objects,
ERXKey<K> keyPath,
boolean includeNulls)
Typesafe variant of arrayGroupedByToManyKeyPath.
|
static <K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByToManyKeyPath(Collection<V> objects,
ERXKey<K> keyPath,
K nullGroupingKey)
Typesafe variant of arrayGroupedByToManyKeyPath.
|
static <K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByToManyKeyPath(Collection<V> objects,
String keyPath,
boolean includeNulls)
Groups an array of objects by a given to-many key path, where every
single item in the to-many will put the object in the corresponding group.
|
static <K,V> NSDictionary<K,NSArray<V>> |
ERXArrayUtilities.arrayGroupedByToManyKeyPath(Collection<V> objects,
String keyPath,
K nullGroupingKey)
Groups an array of objects by a given to-many key path, where every
single item in the to-many will put the object in the corresponding group.
|
static <T> NSArray<NSArray<T>> |
ERXArrayUtilities.batchedArrayWithSize(NSArray<T> array,
int batchSize)
Batches an NSArray into sub-arrays of the given size.
|
Modifier and Type | Method and Description |
---|---|
void |
ERXMutableArray.ThreadSafeArray.addObjectsFromArray(NSArray<? extends V> otherArray) |
NSArray<V> |
ERXMutableArray.ThreadSafeArray.arrayByAddingObjectsFromArray(NSArray<? extends V> otherArray) |
static <T> NSArray<T> |
ERXArrayUtilities.arrayByRemovingFirstObject(NSArray<T> array)
Creates an array that has all of the objects of the parameter array
without the first object.
|
static NSArray<?> |
ERXArrayUtilities.arrayForKeysPath(NSArray<?> array,
NSArray<String> keys)
Returns an array of dictionaries containing the key/value pairs for the given paths.
|
static NSArray<?> |
ERXArrayUtilities.arrayForKeysPath(NSArray<?> array,
NSArray<String> keys)
Returns an array of dictionaries containing the key/value pairs for the given paths.
|
static NSArray<String> |
ERXProperties.arrayForKeyWithDefault(String s,
NSArray<String> defaultValue)
Cover method for returning an NSArray for a
given system property and set a default value if not given.
|
static NSArray |
ERXValueUtilities.arrayValueWithDefault(Object obj,
NSArray def)
Basic utility method for reading
NSArray values which also
works with serialized NSArrays and comma separated items. |
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithObjectsAtIndexesSwapped(NSArray<T> array,
int indexOfObject1,
int indexOfObject2)
Deprecated.
use
ERXArrayUtilities.swapObjects(NSArray, int, int) instead |
static <T> NSArray<T> |
ERXArrayUtilities.arrayWithObjectsSwapped(NSArray<T> array,
Object object1,
Object object2)
Deprecated.
|
static <T> NSArray<NSArray<T>> |
ERXArrayUtilities.batchedArrayWithSize(NSArray<T> array,
int batchSize)
Batches an NSArray into sub-arrays of the given size.
|
static String |
ERXStringUtilities.cleanString(String newString,
NSArray<String> toBeCleaneds)
Given an initial string and an array of substrings,
Removes any occurrences of any of the substrings
from the initial string.
|
static NSArray<String> |
ERXProperties.componentsSeparatedByStringWithDefault(String key,
String separator,
NSArray<String> defaultValue)
Returns an array of strings separated with the given separator string.
|
Object |
ERXArrayUtilities.SortOperator.compute(NSArray array,
String keypath)
Sorts the given array by the keypath.
|
Object |
ERXArrayUtilities.FetchSpecOperator.compute(NSArray array,
String keypath)
Filters and sorts the given array by the named fetchspecification.
|
Object |
ERXArrayUtilities.FlattenOperator.compute(NSArray array,
String keypath)
Flattens the given array.
|
Object |
ERXArrayUtilities.IsEmptyOperator.compute(NSArray array,
String keypath)
returns true if the given array is empty, useful for WOHyperlink disabled binding.
|
Object |
ERXArrayUtilities.SubarrayWithRangeOperator.compute(NSArray array,
String keypath) |
Object |
ERXArrayUtilities.LimitOperator.compute(NSArray array,
String keypath)
Computes the subarray of the given array.
|
Object |
ERXArrayUtilities.UniqueOperator.compute(NSArray array,
String keypath)
Removes duplicates.
|
Object |
ERXArrayUtilities.RemoveNullValuesOperator.compute(NSArray array,
String keypath)
Removes null values from the given array.
|
Object |
ERXArrayUtilities.ObjectAtIndexOperator.compute(NSArray array,
String keypath)
returns the keypath value for n-ths object.
|
Object |
ERXArrayUtilities.AvgNonNullOperator.compute(NSArray array,
String keypath)
returns the average value for over all non-null values.
|
Object |
ERXArrayUtilities.ReverseOperator.compute(NSArray array,
String keypath)
returns the reverse value for the values of the keypath.
|
Object |
ERXArrayUtilities.MedianOperator.compute(NSArray array,
String keypath)
returns the median value for the values of the keypath.
|
Object |
ERXArrayUtilities.StandardDeviationOperator.compute(NSArray array,
String keypath)
returns the standard deviation value for the values of the keypath.
|
static <T> NSArray<T> |
ERXArrayUtilities.deepClone(NSArray<T> array,
boolean onlyCollections)
Returns a deep clone of the given array.
|
static boolean |
ERXFileUtilities.deleteFiles(NSArray<File> filesToDelete)
Deletes all files in array
filesToDelete by
using the method deleteDirectory. |
static void |
ERXUtilities.deleteObjects(EOEditingContext ec,
NSArray objects)
Simple utility method for deleting an array
of objects from an editing context.
|
static <K,V> NSDictionary<K,V> |
ERXDictionaryUtilities.dictionaryByRemovingFromDictionaryKeysInArray(NSDictionary<K,V> d,
NSArray<K> a)
Removes an array of keys from a dictionary and
returns the result.
|
static <K,V> NSDictionary<K,V> |
ERXDictionaryUtilities.dictionaryByRemovingKeysNotInArray(NSDictionary<K,V> d,
NSArray<K> a)
Creates a new dictionary with only the keys and objects in the array.
|
static NSDictionary<String,Object> |
ERXDictionaryUtilities.dictionaryFromObjectWithKeys(Object object,
NSArray<String> keys)
Creates a dictionary from an objects and an array of key paths
|
static <K,T> NSDictionary<K,T> |
ERXArrayUtilities.dictionaryOfObjectsIndexedByKeyPath(NSArray<T> array,
ERXKey<K> keyPath)
Given an array of objects, returns a dictionary mapping the value by performing valueForKeyPath on each object in
the array to the object in the array.
|
static <K,T> NSDictionary<K,T> |
ERXArrayUtilities.dictionaryOfObjectsIndexedByKeyPath(NSArray<T> array,
ERXKey<K> keyPath,
boolean throwOnCollision)
Given an array of objects, returns a dictionary mapping the value by performing valueForKeyPath on each object in
the array to the object in the array.
|
static <K,T> NSDictionary<K,T> |
ERXArrayUtilities.dictionaryOfObjectsIndexedByKeyPath(NSArray<T> array,
String keyPath)
Given an array of objects, returns a dictionary mapping the value by performing valueForKeyPath on each object in
the array to the object in the array.
|
static <K,T> NSDictionary<K,T> |
ERXArrayUtilities.dictionaryOfObjectsIndexedByKeyPath(NSArray<T> array,
String keyPath,
boolean throwOnCollision)
Given an array of objects, returns a dictionary mapping the value by performing valueForKeyPath on each object in
the array to the object in the array.
|
static <K,T> NSDictionary<K,T> |
ERXArrayUtilities.dictionaryOfObjectsIndexedByKeyPathThrowOnCollision(NSArray<T> array,
ERXKey<K> keyPath,
boolean throwOnCollision)
Deprecated.
|
static <K,T> NSDictionary<K,T> |
ERXArrayUtilities.dictionaryOfObjectsIndexedByKeyPathThrowOnCollision(NSArray<T> array,
String keyPath,
boolean throwOnCollision)
Deprecated.
|
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithEntityFetchSpecification(NSArray<T> array,
String entity,
String fetchSpec)
Filters a given array with a named fetch specification.
|
static <T> NSArray<T> |
ERXArrayUtilities.filteredArrayWithEntityFetchSpecification(NSArray<T> array,
String entity,
String fetchSpec,
NSDictionary<String,?> bindings)
Filters a given array with a named fetch specification and bindings.
|
V |
ERXMutableArray.ThreadSafeArray.firstObjectCommonWithArray(NSArray<?> otherArray) |
static NSArray |
ERXArrayUtilities.flatten(NSArray<?> array)
Recursively flattens an array of arrays and individual
objects into a single array of elements.
|
static NSArray |
ERXArrayUtilities.flatten(NSArray<?> array,
boolean filterDuplicates)
Recursively flattens an array of arrays and individual
objects into a single array of elements.
|
static String |
ERXArrayUtilities.friendlyDisplayForKeyPath(NSArray<?> list,
String attribute,
String nullArrayDisplay,
String separator,
String finalSeparator)
Displays a list of attributes off of
objects in a 'friendly' manner.
|
static NSArray |
ERXStringUtilities.fuzzyMatch(String name,
String entityName,
String propertyKey,
String synonymsKey,
EOEditingContext ec,
ERXFuzzyMatchCleaner cleaner,
NSArray sortOrderings)
Fuzzy matching is useful for catching user entered typos.
|
static InputStream |
ERXFileUtilities.inputStreamForResourceNamed(String fileName,
String frameworkName,
NSArray<String> languages)
Get the input stream from the specified Resource.
|
boolean |
ERXMutableArray.ThreadSafeArray.isEqualToArray(NSArray otherArray) |
static long |
ERXFileUtilities.lastModifiedDateForFileInFramework(String fileName,
String frameworkName,
NSArray<String> languages)
Determines the last modification date for a given file
in a framework.
|
static String |
ERXStringUtilities.localizedStringForKey(String key,
String framework,
NSArray languages)
Gets a localized string for a given key in a given framework's
Localizable strings file using the array of languages as the
search order for the key.
|
static String |
ERXStringUtilities.localizedTemplateStringWithObjectForKey(Object o,
String key,
String framework,
NSArray languages)
Uses the method
localizedStringForKey to retreive
a template that is then parsed using the passed in object to
produce a resulting string. |
static Number |
ERXArrayUtilities.median(NSArray<?> array,
String keypath)
Calculates the median value of an array.
|
static String |
ERXArrayUtilities.objectArraysToString(NSArray<Object[][]> array)
pretty prints a NSArray of two dimensional Object array which is ugly when using toString
|
NSArray<V> |
ERXMutableDictionary.ThreadSafeDictionary.objectsForKeys(NSArray<? extends K> keys,
V notFoundMarker) |
static String |
ERXFileUtilities.pathForResourceNamed(String fileName,
String frameworkName,
NSArray<String> languages)
Determines the path of the specified Resource.
|
static URL |
ERXFileUtilities.pathURLForResourceNamed(String fileName,
String frameworkName,
NSArray<String> languages)
Determines the path URL of the specified Resource.
|
static Object |
ERXFileUtilities.readPropertyListFromFileInFramework(String fileName,
String aFrameWorkName,
NSArray<String> languageList)
Reads a file in from the file system for the given set
of languages and then parses the file as if it were a
property list, using the platform's default encoding.
|
static Object |
ERXFileUtilities.readPropertyListFromFileInFramework(String fileName,
String aFrameWorkName,
NSArray<String> languageList,
String encoding)
Reads a file in from the file system for the given set
of languages and then parses the file as if it were a
property list, using the specified encoding.
|
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValues(NSArray<T> array)
Removes all occurrences of NSKeyValueCoding.NullValue in the provided array
|
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValues(NSArray<T> target,
NSArray<T> array)
Removes all occurrences of NSKeyValueCoding.NullValue in the provided array
|
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValues(NSArray<T> target,
NSArray<T> array)
Removes all occurrences of NSKeyValueCoding.NullValue in the provided array
|
static <T> NSArray<T> |
ERXArrayUtilities.removeNullValuesFromEnd(NSArray<T> array)
removes all occurrences of NSKeyValueCoding.Null from the end of the array
|
void |
ERXMutableDictionary.ThreadSafeDictionary.removeObjectsForKeys(NSArray<? extends K> keys) |
void |
ERXMutableArray.ThreadSafeArray.removeObjectsInArray(NSArray<?> otherArray) |
void |
ERXMutableArray.ThreadSafeArray.replaceObjectsInRange(NSRange range,
NSArray otherArray,
NSRange otherRange) |
static void |
ERXUtilities.replicateDataFromEOToEO(EOEnterpriseObject r1,
EOEnterpriseObject r2,
NSArray attributeNames)
Copies values from one EO to another using an array of Attributes
|
static boolean |
ERXFileUtilities.resourceExists(String fileName,
String frameworkName,
NSArray<String> languages)
Determines if a given resource exists.
|
void |
ERXMutableArray.ThreadSafeArray.setArray(NSArray<? extends V> otherArray) |
static void |
ERXProperties.setArrayForKey(NSArray array,
String key)
Sets an array in the System properties for
a particular key.
|
void |
ERXMulticastingDelegate.setDelegateOrder(NSArray orderedDelegates)
Use this to set the delegate order if the addDelegate...
|
static <T> NSSet<T> |
ERXArrayUtilities.setFromArray(NSArray<T> array)
Deprecated.
use
ERXSetUtilities.setFromArray(Collection) instead |
static <K,V> void |
ERXDictionaryUtilities.setObjectForKeys(NSMutableDictionary<K,V> dictionary,
V object,
NSArray<K> keys)
Sets the object for each of the keys in the array on a mutable dictionary.
|
static <T> NSArray<T> |
ERXSetUtilities.sortedArrayFromSet(NSSet<T> set,
NSArray<EOSortOrdering> orderings)
Takes an unordered set and creates a sorted array from its elements.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKey(NSArray<T> array,
String key)
Sorts a given array with a key in ascending fashion.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKey(NSArray<T> array,
String key,
NSSelector selector)
Sorts a given array with a key in ascending fashion.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKeys(NSArray<T> array,
NSArray<String> keys,
NSSelector selector)
Sorts a given array with a set of keys according to the given selector.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArraySortedWithKeys(NSArray<T> array,
NSArray<String> keys,
NSSelector selector)
Sorts a given array with a set of keys according to the given selector.
|
static <T> NSArray<T> |
ERXArrayUtilities.sortedArrayUsingComparator(NSArray<T> array,
NSComparator comparator)
Just like the method
sortedArrayUsingComparator(NSComparator) ,
except it catches the NSComparator.ComparisonException and, if thrown,
it wraps it in a runtime exception. |
static <T> NSMutableArray<T> |
ERXArrayUtilities.sortedMutableArraySortedWithKey(NSArray<T> array,
String key)
Sorts a given array with a key in ascending fashion and returns a mutable clone of the result.
|
static Number |
ERXArrayUtilities.stdDev(NSArray<?> array,
String keypath,
boolean isPopulation)
Finds the standard deviation of the numeric values found in the array at the
specified keypath.
|
static <T> NSArray<T> |
ERXArrayUtilities.swapObjects(NSArray<T> array,
int indexA,
int indexB)
Swaps two objects at the given indexes in an array and returns a new
modified array.
|
static <T> NSArray<T> |
ERXArrayUtilities.swapObjects(NSArray<T> array,
T a,
int indexB)
Swaps the object a with the object at the given index in an array and returns
a new modified array.
|
static <T> NSArray<T> |
ERXArrayUtilities.swapObjects(NSArray<T> array,
T a,
T b)
Swaps the objects in an array and returns a new modified array.
|
static <T> NSArray<T> |
ERXMutableArray.synchronizedArray(NSArray<T> array) |
static NSData |
ERXMutableArray.toBlob(NSArray<?> d) |
static String |
ERXMutableArray.toPropertyList(NSArray<?> array) |
Constructor and Description |
---|
ERXMultiKey(NSArray<Object> keys)
Constructs a multi-key for a given
array.
|
ERXMutableArray(NSArray<? extends E> array) |
ERXRoundRobinCollection(NSArray<E> collection) |
InIpRangeOperator(NSArray<String> ipList)
新規 InIpRangeOperator を作成します。「コンストラクタ」
|
ThreadSafeArray(NSArray<? extends V> array) |
Modifier and Type | Method and Description |
---|---|
NSArray<EOAttribute> |
ERXSQLHelper.attributesToFetchForEntity(EOFetchSpecification fetchSpec,
EOEntity entity)
Returns the list of attributes to fetch for a fetch spec.
|
protected NSArray<String> |
ERXJDBCUtilities.CopyTask.columnsFromAttributesAsArray(EOAttribute[] attributes,
boolean quoteNames) |
NSArray |
ERXJDBCAdaptor.Channel.primaryKeysForNewRowsWithEntity(int cnt,
EOEntity entity)
Batch-fetches new primary keys.
|
NSArray<String> |
ERXSQLHelper.splitSQLStatements(String sql)
Splits semicolon-separate sql statements into an array of strings
|
NSArray<String> |
ERXSQLHelper.splitSQLStatementsFromFile(File f)
Splits the SQL statements from the given file.
|
NSArray<String> |
ERXSQLHelper.splitSQLStatementsFromInputStream(InputStream is)
Splits the SQL statements from the given input stream
|
Modifier and Type | Method and Description |
---|---|
void |
ERXSQLHelper.addGroupByClauseToExpression(NSArray<EOAttribute> attributes,
EOSQLExpression expression)
Adds a group-by clause to the given SQL Expression based on the given
list of attributes.
|
protected EOAttribute[] |
ERXJDBCUtilities.CopyTask.attributesArray(NSArray<EOAttribute> array) |
String |
ERXSQLHelper.createDependentSchemaSQLForEntities(NSArray<EOEntity> entities,
EOAdaptor adaptor)
Generates table create statements for a set of entities, then finds all the entities that those entities depend on (in other models) and generates
foreign key statements for those, so you can generate sql for cross-model.
|
String |
ERXSQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities) |
String |
ERXSQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities,
NSArray<String> externalTypesToIgnore) |
String |
ERXSQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities,
NSArray<String> externalTypesToIgnore) |
String |
ERXSQLHelper.OracleSQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities,
NSArray<String> externalTypesToIgnore) |
String |
ERXSQLHelper.OracleSQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities,
NSArray<String> externalTypesToIgnore) |
String |
ERXSQLHelper.DB2SQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities,
NSArray<String> externalTypesToIgnore) |
String |
ERXSQLHelper.DB2SQLHelper.createIndexSQLForEntities(NSArray<EOEntity> entities,
NSArray<String> externalTypesToIgnore) |
String |
ERXSQLHelper.createSchemaSQLForEntitiesInDatabaseContext(NSArray<EOEntity> entities,
EODatabaseContext databaseContext,
boolean create,
boolean drop)
creates SQL to create tables for the specified Entities.
|
String |
ERXSQLHelper.createSchemaSQLForEntitiesInModel(NSArray<EOEntity> entities,
EOModel model)
Creates SQL to create tables for the specified Entities.
|
String |
ERXSQLHelper.createSchemaSQLForEntitiesInModelAndOptions(NSArray<EOEntity> entities,
EOModel model,
NSDictionary optionsCreate)
creates SQL to create tables for the specified Entities.
|
String |
ERXSQLHelper.createSchemaSQLForEntitiesInModelWithName(NSArray<EOEntity> entities,
String modelName)
creates SQL to create tables for the specified Entities.
|
String |
ERXSQLHelper.createSchemaSQLForEntitiesInModelWithNameAndOptions(NSArray<EOEntity> entities,
String modelName,
NSDictionary optionsCreate)
creates SQL to create tables for the specified Entities.
|
String |
ERXSQLHelper.OracleSQLHelper.createSchemaSQLForEntitiesInModelWithNameAndOptions(NSArray<EOEntity> entities,
String modelName,
NSDictionary optionsCreate)
oracle 9 has a maximum length of 30 characters for table names,
column names and constraint names Foreign key constraint names are
defined like this from the plugin:
|
String |
ERXSQLHelper.createSchemaSQLForEntitiesWithOptions(NSArray<EOEntity> entities,
EOAdaptor adaptor,
NSDictionary<String,String> optionsDictionary)
Creates the schema sql for a set of entities.
|
String |
ERXSQLHelper.createSchemaSQLForEntitiesWithOptions(NSArray<EOEntity> entities,
EODatabaseContext databaseContext,
NSDictionary<String,String> optionsCreate)
Creates the schema sql for a set of entities.
|
static void |
ERXJDBCUtilities.createTablesForEntities(EOAdaptorChannel channel,
NSArray<EOEntity> entities)
Creates tables, primary keys, and foreign keys for the given list of
entities.
|
static void |
ERXJDBCUtilities.dropTablesForEntities(EOAdaptorChannel channel,
NSArray<EOEntity> entities,
boolean ignoreFailures)
Drops tables, primary keys, and foreign keys for the given list of
entities.
|
static int |
ERXJDBCUtilities.executeUpdateScript(EOAdaptorChannel channel,
NSArray<String> sqlStatements)
Splits the given sqlscript and executes each of the statements in a
single transaction
|
static int |
ERXJDBCUtilities.executeUpdateScript(EOAdaptorChannel channel,
NSArray<String> sqlStatements,
boolean ignoreFailures)
Splits the given sqlscript and executes each of the statements in a
single transaction
|
static EOModelGroup |
ERXJDBCPlugInUtilities.modelGroupForEntityGroups(NSArray entityGroups) |
void |
ERXJDBCAdaptor.Channel.performAdaptorOperations(NSArray ops)
Overridden to post a notification when the operations were performed.
|
void |
ERXJDBCAdaptor.Channel.selectAttributes(NSArray array,
EOFetchSpecification fetchspecification,
boolean lock,
EOEntity entity)
Overridden to switch the connection to read-only while selecting.
|
void |
ERXJDBCAdaptor.Channel.setAttributesToFetch(NSArray<EOAttribute> attributes) |
EOSQLExpression |
ERXSQLHelper.sqlExpressionForFetchSpecification(EOEditingContext ec,
EOFetchSpecification spec,
long start,
long end,
NSArray<EOAttribute> attributes)
Creates the SQL which is used by the provided EOFetchSpecification,
limited by the given range.
|
String |
ERXSQLHelper.sqlWhereClauseStringForKey(EOSQLExpression e,
String key,
NSArray valueArray)
Creates a where clause string " someKey IN ( someValue1,...)".
|
Modifier and Type | Method and Description |
---|---|
static NSArray<String> |
ERXLocalizer.availableLanguages()
使用可能な言語を配列として戻します
|
static NSArray<String> |
ERXLocalizer.fileNamesToWatch()
ウォッチするファイル名配列を戻します
|
static NSArray<String> |
ERXLocalizer.frameworkSearchPath()
フレームワーク検索パスの配列を戻します
|
Modifier and Type | Method and Description |
---|---|
static ERXLocalizer |
ERXLocalizer.localizerForLanguages(NSArray<String> languages)
Gets the best localizer for a set of languages.
|
protected NSDictionary |
ERXLocalizer.readPropertyListFromFileInFramework(String fileName,
String framework,
NSArray<String> languages) |
static void |
ERXLocalizer.setAvailableLanguages(NSArray<String> value)
使用可能な言語を配列でセットする
|
static void |
ERXLocalizer.setFileNamesToWatch(NSArray<String> value)
ウォッチするファイル名をセットします
|
static void |
ERXLocalizer.setFrameworkSearchPath(NSArray<String> value)
フレームワーク検索パスをセットします
|
Modifier and Type | Method and Description |
---|---|
NSArray |
ERXLog4JConfiguration.appenders()
Gets the attached to the loggers.
|
NSArray |
ERXMailAppender.bccAddressesAsArray()
Gets the bcc addresses as an array.
|
NSArray |
ERXMailAppender.ccAddressesAsArray()
Gets the cc addresses as an array.
|
NSArray |
ERXLog4JConfiguration.levelsWithoutUnset() |
NSArray |
ERXLog4JConfiguration.loggerLevels() |
NSArray |
ERXLog4JConfiguration.loggerLevelsWithoutUnset() |
NSArray |
ERXLog4JConfiguration.loggers()
Gets all of the configured
loggers that pass the filters for logger name and level. |
NSArray |
ERXLog4JConfiguration.pageSections() |
NSArray |
ERXMailAppender.toAddressesAsArray()
Gets the to addresses as an array.
|
Modifier and Type | Method and Description |
---|---|
NSArray<EOSQLExpression> |
ERXMigrationTable._addForeignKeyExpressions(ERXMigrationColumn[] sourceColumns,
ERXMigrationColumn[] destinationColumns)
Returns an array of EOSQLExpressions for adding a foreign key constraint to this table.
|
NSArray<EOSQLExpression> |
ERXMigrationTable._addForeignKeyExpressions(ERXMigrationColumn sourceColumn,
ERXMigrationColumn destinationColumn)
Returns an array of EOSQLExpressions for adding a foreign key constraint to this table.
|
NSArray<EOSQLExpression> |
ERXMigrationTable._createExpressions()
Returns an array of EOSQLExpressions for creating this table and all of its ERXMigrationColumns.
|
NSArray<EOSQLExpression> |
ERXMigrationColumn._createExpressions()
Returns an array of EOSQLExpressions for creating this column.
|
NSArray<EOSQLExpression> |
ERXMigrationColumn._deleteExpressions()
Returns an array of EOSQLExpressions for deleting this column.
|
NSArray<EOSQLExpression> |
ERXMigrationTable._dropExpressions()
Returns an array of EOSQLExpressions for dropping this table.
|
NSArray<EOSQLExpression> |
ERXMigrationTable._dropPrimaryKeyExpressions(ERXMigrationColumn... columns)
Returns an array of EOSQLExpressions for removing the primary key constraint of this table (only supports single attribute PK's right now).
|
NSArray<EOSQLExpression> |
ERXMigrationTable._renameToExpressions(String newName)
Returns an array of EOSQLExpressions for renaming this table.
|
NSArray<EOSQLExpression> |
ERXMigrationColumn._renameToExpressions(String newName)
Returns an array of EOSQLExpressions for renaming this column.
|
NSArray<EOSQLExpression> |
ERXMigrationTable._setPrimaryKeyExpressions(ERXMigrationColumn... columns)
Returns an array of EOSQLExpressions for setting the primary key constraint of this table.
|
static NSArray<String> |
ERXMigrationDatabase._stringsForExpressions(NSArray<EOSQLExpression> expressions)
Returns an NSArray of SQL strings that correspond to the NSArray of
EOSQLExpressions that were passed in.
|
NSArray<String> |
ERXMigrationTable.languages()
Returns the configured default languages for this migration.
|
NSArray<String> |
ERXMigrationDatabase.languages()
Returns the configured default languages for this migration.
|
NSArray<String> |
ERXMigrationDatabase.Migration.languages() |
NSArray<ERXModelVersion> |
IERXMigration.modelDependencies()
Returns an array of ModelVersion objects that this migration depends on.
|
NSArray<ERXModelVersion> |
ERXMigrationDatabase.Migration.modelDependencies()
Overridden to return null by default
|
NSArray<ERXModelVersion> |
ERXMigration.modelDependencies()
No dependencies
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedClobColumns(String name,
boolean allowsNull)
Returns a new localized string blob column.
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedClobColumns(String name,
boolean allowsNull,
NSArray<String> languages)
Returns a new localized string blob column.
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedStringColumns(String name,
int width,
boolean allowsNull)
Returns a new localized String column (VARCHAR).
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedStringColumns(String name,
int width,
boolean allowsNull,
NSArray<String> languages)
Returns a new localized String column (VARCHAR).
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedStringColumns(String name,
int width,
boolean allowsNull,
String defaultValue)
Returns a new localized String column (VARCHAR).
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedStringColumns(String name,
int width,
boolean allowsNull,
String defaultValue,
NSArray<String> languages)
Returns a new localized String column (VARCHAR).
|
NSArray<NSDictionary<String,Object>> |
ERXMigrationTable.newPrimaryKeys(int count)
Returns an array of dictionaries that represent the primary keys for
an entity described by this table.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ERXMigrator._buildDependenciesForModel(EOModel model,
int migrateToVersion,
Map<String,Integer> versions,
Map<IERXMigration,ERXModelVersion> migrations,
NSArray<String> skipModelNames) |
protected Map<IERXMigration,ERXModelVersion> |
ERXMigrator._buildDependenciesForModelsNamed(NSArray<String> modelNames,
NSArray<String> skipModelNames) |
protected Map<IERXMigration,ERXModelVersion> |
ERXMigrator._buildDependenciesForModelsNamed(NSArray<String> modelNames,
NSArray<String> skipModelNames) |
static void |
ERXMigrationDatabase._ensureNotEmpty(NSArray<EOSQLExpression> expressions,
String operationName,
boolean required)
Throws an ERXMigrationFailedException if the array of expressions is
empty.
|
static NSArray<String> |
ERXMigrationDatabase._stringsForExpressions(NSArray<EOSQLExpression> expressions)
Returns an NSArray of SQL strings that correspond to the NSArray of
EOSQLExpressions that were passed in.
|
static ERXMigrationDatabase |
ERXMigrationDatabase.database(EOAdaptorChannel adaptorChannel,
EOModel model,
NSArray<String> languages)
Returns an ERXMigrationDatabase for the given EOAdaptorChannel.
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedClobColumns(String name,
boolean allowsNull,
NSArray<String> languages)
Returns a new localized string blob column.
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedStringColumns(String name,
int width,
boolean allowsNull,
NSArray<String> languages)
Returns a new localized String column (VARCHAR).
|
NSArray<ERXMigrationColumn> |
ERXMigrationTable.newLocalizedStringColumns(String name,
int width,
boolean allowsNull,
String defaultValue,
NSArray<String> languages)
Returns a new localized String column (VARCHAR).
|
Constructor and Description |
---|
Migration(NSArray languages) |
Modifier and Type | Method and Description |
---|---|
static NSArray<String> |
ERXTcpIp.fullDomainIpList(NSArray<String> data)
ドメイン又は ip リストを全件表示するドメイン又は ip リストに変換します
例:
www.ksroom.com はそのままで戻る
1.2.3.4 はそのままで戻る
1.2.3.4-6 は (1.2.3.4, 1.2.3.5, 1.2.3.6) として戻る
|
static NSArray<String> |
ERXTcpIp.machineIpList()
マシンで設定されているIPリストを取得します。
環境設定については: A10Properties.
|
Modifier and Type | Method and Description |
---|---|
static NSArray<String> |
ERXTcpIp.fullDomainIpList(NSArray<String> data)
ドメイン又は ip リストを全件表示するドメイン又は ip リストに変換します
例:
www.ksroom.com はそのままで戻る
1.2.3.4 はそのままで戻る
1.2.3.4-6 は (1.2.3.4, 1.2.3.5, 1.2.3.6) として戻る
|
Modifier and Type | Method and Description |
---|---|
static NSArray<String> |
ERXPartial.partialAttributes()
When partial entities are initialized the
EOEntity is removed from the
model, making it impossible to query attributes and relationships later. |
static NSArray<String> |
ERXPartial.partialProperties()
When partial entities are initialized the
EOEntity is removed
from the model making it impossible to query attributes and relationships
later. |
static NSArray<String> |
ERXPartial.partialRelationships()
When partial entities are initialized the
EOEntity is removed from the
model making it impossible to query attributes and relationships later. |
Modifier and Type | Method and Description |
---|---|
<T> NSArray<T> |
IERXChainableQualifier.filtered(NSArray<T> array)
Equivalent to EOQualifier.filteredArrayWithQualifier(NSArray,
EOQualifier)
|
<T> NSArray<T> |
ERXOrQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXNotQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXKeyValueQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXKeyComparisonQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXAndQualifier.filtered(NSArray<T> array) |
Modifier and Type | Method and Description |
---|---|
<T> NSArray<T> |
IERXChainableQualifier.filtered(NSArray<T> array)
Equivalent to EOQualifier.filteredArrayWithQualifier(NSArray,
EOQualifier)
|
<T> NSArray<T> |
ERXOrQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXNotQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXKeyValueQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXKeyComparisonQualifier.filtered(NSArray<T> array) |
<T> NSArray<T> |
ERXAndQualifier.filtered(NSArray<T> array) |
<T> T |
IERXChainableQualifier.first(NSArray<T> array)
Equivalent to EOQualifier.first(NSMutableArray, EOQualfier)
|
<T> T |
ERXOrQualifier.first(NSArray<T> array) |
<T> T |
ERXNotQualifier.first(NSArray<T> array) |
<T> T |
ERXKeyValueQualifier.first(NSArray<T> array) |
<T> T |
ERXKeyComparisonQualifier.first(NSArray<T> array) |
<T> T |
ERXAndQualifier.first(NSArray<T> array) |
<T> T |
IERXChainableQualifier.one(NSArray<T> array)
Equivalent to EOQualifier.one(NSMutableArray, EOQualfier)
|
<T> T |
ERXOrQualifier.one(NSArray<T> array) |
<T> T |
ERXNotQualifier.one(NSArray<T> array) |
<T> T |
ERXKeyValueQualifier.one(NSArray<T> array) |
<T> T |
ERXKeyComparisonQualifier.one(NSArray<T> array) |
<T> T |
ERXAndQualifier.one(NSArray<T> array) |
<T> T |
IERXChainableQualifier.requiredOne(NSArray<T> array)
Equivalent to EOQualifier.requiredOne(NSArray, EOQualfier)
|
<T> T |
ERXOrQualifier.requiredOne(NSArray<T> array) |
<T> T |
ERXNotQualifier.requiredOne(NSArray<T> array) |
<T> T |
ERXKeyValueQualifier.requiredOne(NSArray<T> array) |
<T> T |
ERXKeyComparisonQualifier.requiredOne(NSArray<T> array) |
<T> T |
ERXAndQualifier.requiredOne(NSArray<T> array) |
Constructor and Description |
---|
ERXAndQualifier(NSArray<? extends EOQualifier> qualifiers) |
ERXOrQualifier(NSArray<? extends EOQualifier> qualifiers) |
Modifier and Type | Method and Description |
---|---|
protected NSArray<ERXDatabase.CacheChange> |
ERXRemoteSynchronizer.filteredCacheChanges(NSArray<ERXDatabase.CacheChange> cacheChanges) |
protected NSArray<EOGlobalID> |
ERXRemoteSynchronizer.readGIDs(DataInputStream dis) |
Modifier and Type | Method and Description |
---|---|
protected void |
ERXSimpleMulticastSynchronizer._writeCacheChanges(int transactionID,
NSArray<ERXDatabase.CacheChange> cacheChanges) |
protected abstract void |
ERXRemoteSynchronizer._writeCacheChanges(int transactionID,
NSArray<ERXDatabase.CacheChange> cacheChanges) |
protected NSArray<ERXDatabase.CacheChange> |
ERXRemoteSynchronizer.filteredCacheChanges(NSArray<ERXDatabase.CacheChange> cacheChanges) |
NSDictionary<String,NSSet<EOGlobalID>> |
ERXRemoteSynchronizer.globalIDsGroupedByEntity(NSArray<EOGlobalID> gids) |
void |
ERXRemoteSynchronizer.writeCacheChanges(int transactionID,
NSArray<ERXDatabase.CacheChange> cacheChanges) |
protected void |
ERXRemoteSynchronizer.writeGIDs(DataOutputStream dos,
NSArray<EOGlobalID> gids) |
Modifier and Type | Method and Description |
---|---|
NSArray<WOSession> |
ERXStatisticsStore.activeSessions() |
static NSArray<ERXStats.LogEntry> |
ERXStats.aggregateLogEntries()
Returns an array of LogEntries that represents the aggregate time for
all of the tracked stats in the queue, uniqued on key.
|
NSArray<ERXStats.LogEntry> |
ERXStatisticsPage.aggregateLogEntries() |
NSArray |
ERXStatsSummary.statsTypes()
Gets the array of stats event types.
|
NSArray |
ERXStats.LogEntry.traces() |
Modifier and Type | Method and Description |
---|---|
static <T> Collector<T,?,NSArray<T>> |
ERXCollectors.toNSArray()
Returns a
Collector that accumulates the input elements into a new
NSArray . |
Modifier and Type | Field and Description |
---|---|
protected NSArray<NSValidation.ValidationException> |
ERXValidationException.additionalExceptions
caches any set additionalExceptions
|
Modifier and Type | Method and Description |
---|---|
NSArray<NSValidation.ValidationException> |
ERXValidationException.additionalExceptions()
Cover method to return any additional exceptions that
occurred.
|
protected NSArray<ERXValidationException> |
ERXValidationFactory.convertAdditionalExceptions(NSValidation.ValidationException ex)
Converts the additional exceptions contained in an Exception to ERXValidationException subclasses.
|
Modifier and Type | Method and Description |
---|---|
void |
ERXValidationException.setAdditionalExceptions(NSArray<NSValidation.ValidationException> exceptions)
Sets the array of additional exceptions.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray |
WOToManyRelationship._selections |
Modifier and Type | Method and Description |
---|---|
NSArray |
WOToOneRelationship.currentValues() |
NSArray |
WOToManyRelationship.currentValues() |
NSArray |
WOToManyRelationship.selections() |
NSArray |
WOToOneRelationship.theList() |
Modifier and Type | Method and Description |
---|---|
void |
WOToManyRelationship.setSelections(NSArray selections) |
void |
WOToManyRelationship.updateSourceObject(NSArray newValues) |
Modifier and Type | Method and Description |
---|---|
NSArray<EOAttribute> |
FSAdaptorChannel.attributesToFetch() |
NSArray<EOAttribute> |
FSAdaptorChannel.describeResults() |
NSArray |
FSAdaptorChannel.describeTableNames() |
Modifier and Type | Method and Description |
---|---|
EOModel |
FSAdaptorChannel.describeModelWithTableNames(NSArray tableNames) |
void |
FSAdaptorChannel.selectAttributes(NSArray<EOAttribute> someAttributes,
EOFetchSpecification aFetchSpecification,
boolean shouldLock,
EOEntity anEntity) |
void |
FSAdaptorChannel.setAttributesToFetch(NSArray<EOAttribute> someAttributes) |
Modifier and Type | Field and Description |
---|---|
protected NSArray |
DRReportModel._attributeList |
protected NSArray |
DRReportModel._criteriaList |
protected NSArray |
DRAttribute._emptyArray |
protected NSArray |
DRReportModel._groups |
protected NSArray |
DRGroup._masterCriteriaDrillDownList |
protected NSArray |
DRGroup._ordering |
protected NSArray |
DRReportModel._orderings |
protected static NSArray |
DRSubMasterCriteria._possibleUseTypes
Defines the array of possible groupings.
|
protected NSArray |
DRSubMasterCriteria._rawPossibleValues |
protected NSArray |
DRRecordGroup._rawRecordList |
protected NSArray |
DRReportModel._rawRecords |
protected NSArray |
DRReportModel._records |
protected NSArray |
DRGroup._sortedArray |
protected NSArray |
DRGroup._sortedArrayBase |
protected NSArray |
DRRecordGroup._sortedRecordList |
protected NSArray |
DRMasterCriteria._subCriteriaList |
protected NSArray |
DRRecordGroup._totalList |
Constructor and Description |
---|
DRAttributeGroup(NSDictionary dictionary,
NSArray subAttributes) |
DRAttributeGroup(String keyPath,
String format,
String label,
boolean shouldTotal,
NSArray attributes,
NSDictionary userInfo) |
DRSubMasterCriteria(NSDictionary smcdict,
NSArray apossibleValues)
Constructor that uses a
NSDictionary which defines the properties. |
DRSubMasterCriteria(String akey,
boolean auseMethod,
boolean auseTimeFormat,
String aformat,
String apossibleValuesUseType,
boolean agroupEdges,
NSArray apossibleValues) |
Modifier and Type | Method and Description |
---|---|
static NSArray |
IMSearchOptionsAction.selectedValues(NSArray options,
String optionKeyPath,
boolean quicksilver,
String message) |
static NSArray |
IMSearchMessageAction.selectedValues(NSArray options,
String optionKeyPath,
boolean quicksilver,
String message) |
static NSArray |
IMSearchOptionsAction.selectedValues(NSDictionary options,
boolean quicksilver,
String message) |
static NSArray |
IMSearchMessageAction.selectedValues(NSDictionary options,
boolean quicksilver,
String message) |
Modifier and Type | Method and Description |
---|---|
static NSArray |
IMSearchOptionsAction.selectedValues(NSArray options,
String optionKeyPath,
boolean quicksilver,
String message) |
static NSArray |
IMSearchMessageAction.selectedValues(NSArray options,
String optionKeyPath,
boolean quicksilver,
String message) |
Modifier and Type | Method and Description |
---|---|
protected NSArray<org.apache.lucene.document.Document> |
ERIndex.addedDocumentsForObjects(NSArray<? extends EOEnterpriseObject> objects) |
NSArray<String> |
ERIndex.attributeNames() |
protected NSArray<org.apache.lucene.index.Term> |
ERIndex.deletedTermsForObjects(NSArray<? extends EOEnterpriseObject> objects) |
NSArray<EOKeyGlobalID> |
ERIndex.findGlobalIDs(EOQualifier qualifier) |
NSArray<EOKeyGlobalID> |
ERIndex.findGlobalIDs(String queryString) |
NSArray<? extends EOEnterpriseObject> |
ERIndex.findObjects(EOEditingContext ec,
EOQualifier qualifier) |
NSArray<? extends EOEnterpriseObject> |
ERIndex.findObjects(EOEditingContext ec,
org.apache.lucene.search.Query query) |
NSArray<? extends EOEnterpriseObject> |
ERIndex.findObjects(EOEditingContext ec,
org.apache.lucene.search.Query query,
org.apache.lucene.search.Filter filter,
org.apache.lucene.search.Sort sort,
int start,
int end) |
NSArray<? extends EOEnterpriseObject> |
ERIndex.findObjects(EOEditingContext ec,
String queryString) |
NSArray<String> |
ERIndex.findTermStringsForPrefix(String field,
String prefix) |
protected NSArray |
ERAutoIndex.AutoTransactionHandler.indexableObjectsForObject(String type,
EOEnterpriseObject object) |
protected NSArray |
ERAutoIndex.AutoTransactionHandler.indexableObjectsForObjects(String type,
NSArray<EOEnterpriseObject> objects) |
NSArray |
ERIndexer.indicesForEntity(String entityName) |
NSArray<ERIndex.Job> |
ERIndex.Transaction.jobs() |
NSArray |
ERIndex.Job.objects() |
NSArray<String> |
ERIndex.terms(String fieldName) |
Modifier and Type | Method and Description |
---|---|
protected NSArray<org.apache.lucene.document.Document> |
ERIndex.addedDocumentsForObjects(NSArray<? extends EOEnterpriseObject> objects) |
void |
ERIndex.Transaction.addJob(ERIndex.Command command,
NSArray objects) |
void |
ERIndex.addObjectsToIndex(EOEditingContext ec,
NSArray<? extends EOEnterpriseObject> objects) |
protected void |
ERIndex.TransactionHandler.addObjectsToIndex(ERIndex.Transaction transaction,
NSArray<? extends EOEnterpriseObject> objects) |
protected ERAutoIndex.ConfigurationEntry |
ERAutoIndex.Configuration.configureEntity(String entityName,
NSArray keys) |
protected NSArray<org.apache.lucene.index.Term> |
ERIndex.deletedTermsForObjects(NSArray<? extends EOEnterpriseObject> objects) |
void |
ERIndex.deleteObjectsFromIndex(EOEditingContext ec,
NSArray<? extends EOEnterpriseObject> objects) |
protected void |
ERIndex.TransactionHandler.deleteObjectsFromIndex(ERIndex.Transaction transaction,
NSArray<? extends EOEnterpriseObject> objects) |
protected NSArray |
ERAutoIndex.AutoTransactionHandler.indexableObjectsForObjects(String type,
NSArray<EOEnterpriseObject> objects) |
Constructor and Description |
---|
ERIndexer(NSArray<ERAutoIndex> indices) |
Job(ERIndex.Command command,
NSArray objects) |
Modifier and Type | Method and Description |
---|---|
NSArray<ERIAttribute> |
ERIAttributeGroup.allAttributes() |
NSArray<ERIAttribute> |
_ERIValidationRule.attributes() |
NSArray<ERIAttribute> |
_ERIAttributeType.attributes() |
NSArray<ERIAttribute> |
_ERIAttributeGroup.attributes() |
NSArray<ERIAttributeGroup> |
_ERIAttributeGroup.children() |
NSArray<ERIAttributeGroup> |
ERIAttributeGroup.groups() |
NSArray<ERIValidationRule> |
_ERIAttribute.validationRules() |
Modifier and Type | Method and Description |
---|---|
NSArray<ERIFile> |
_ERIDirectory.files() |
Constructor and Description |
---|
ERJRFoundationDataSource(NSArray<? extends NSKeyValueCodingAdditions> arr) |
Modifier and Type | Field and Description |
---|---|
protected NSArray<String> |
ERJavaMail.allowEmailAddressPatterns
holds the array of allowed email addresses
ホワイト・リスト・メールアドレス配列を保持
|
protected NSArray<String> |
ERJavaMail.denyEmailAddressPatterns
holds the array of denied email addresses
ブラック・リスト・メールアドレス配列を保持
|
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERJavaMail.allowEmailAddressPatterns()
Gets the array of allowed email address patterns.
|
NSArray<ERMailAttachment> |
ERMailDelivery.attachments() |
NSArray<String> |
ERJavaMail.blackListEmailAddressPatterns()
Deprecated.
This will be removed from future versions. Please use
ERJavaMail.denyEmailAddressPatterns |
static NSArray<String> |
ERMailUtils.convertInternetAddressesToNSArray(javax.mail.Address[] addressesArray)
Method that converts Address [] loaded with either Address or InternetAddress objects to NSArray of String
emails.
|
NSArray<String> |
ERJavaMail.denyEmailAddressPatterns()
Gets the array of denied email address patterns.
|
static NSArray<String> |
ERMailUtils.emailsFromBulkList(String str)
This method will parse a large string of email address that could be separated by commas,
semicolon, tabs, spaces, carriage returns, (even mixed) and will return an NSArray of addresses(strings)
|
NSArray<String> |
ERJavaMail.filterEmailAddresses(NSArray<String> emailAddresses)
Filters an array of email addresses by the deny and allow lists.
|
NSArray<ERMessage> |
ERIMAP.getMessages(com.sun.mail.imap.IMAPFolder folder) |
NSArray<ERMessage> |
ERIMAP.getMessages(com.sun.mail.imap.IMAPFolder folder,
int firstMsg,
int lastMsg) |
NSArray<ERMailAttachment> |
ERMailDelivery.inlineAttachments() |
NSArray<String> |
ERJavaMail.whiteListEmailAddressPatterns()
Deprecated.
This method will be removed in future versions. Please use
ERJavaMail.allowEmailAddressPatterns() |
Modifier and Type | Method and Description |
---|---|
void |
ERMessage._invalidRecipients(NSArray<String> invalidRecipientAddresses)
Called by ERMailSender
|
String |
ERWOMailDelivery.composeComponentEmail(String fromEmailAddress,
NSArray<String> toEmailAddresses,
NSArray<String> bccEmailAddresses,
String subject,
WOComponent component,
boolean sendNow)
Creates and optionally sends a WOComponent as email.
|
String |
ERWOMailDelivery.composeComponentEmail(String fromEmailAddress,
NSArray<String> toEmailAddresses,
NSArray<String> bccEmailAddresses,
String subject,
WOComponent component,
boolean sendNow)
Creates and optionally sends a WOComponent as email.
|
String |
ERWOMailDelivery.composePlainTextEmail(String fromEmailAddress,
NSArray<String> toEmailAddresses,
NSArray<String> bccEmailAddresses,
String subject,
String message,
boolean sendNow)
Creates and optionally sends a plain text email.
|
String |
ERWOMailDelivery.composePlainTextEmail(String fromEmailAddress,
NSArray<String> toEmailAddresses,
NSArray<String> bccEmailAddresses,
String subject,
String message,
boolean sendNow)
Creates and optionally sends a plain text email.
|
static javax.mail.internet.InternetAddress[] |
ERMailUtils.convertNSArrayToInternetAddresses(NSArray<String> addrs)
Method that converts NSArray of String emails to InternetAddress [].
|
NSArray<String> |
ERJavaMail.filterEmailAddresses(NSArray<String> emailAddresses)
Filters an array of email addresses by the deny and allow lists.
|
void |
ERMessage.Delegate.invalidRecipients(ERMessage message,
NSArray<String> invalidRecipientAddresses)
Called when a message fails with invalid recipients.
|
protected void |
ERMailSender.notifyInvalidEmails(NSArray<String> invalidEmails)
Executes the callback method to notify the calling application of any invalid emails.
|
protected EOOrQualifier |
ERJavaMail.qualifierArrayForEmailPatterns(NSArray<String> emailPatterns)
Constructs an Or qualifier for filtering an array of strings that might have the * wildcard
character.
|
void |
ERMailDelivery.setBCCAddresses(NSArray<String> bccAddresses)
Sets the bcc-addresses array for the current message instance
カレント・メッセージ・インスタンスの BCCアドレス NSArray をセットします
|
void |
ERMailDelivery.setCCAddresses(NSArray<String> ccAddresses)
Sets the cc-addresses array for the current message instance
カレント・メッセージ・インスタンスの CCアドレス NSArray をセットします
|
void |
ERMailDelivery.setInternetAddresses(NSArray<javax.mail.internet.InternetAddress> addresses,
javax.mail.Message.RecipientType type)
Sets addresses using an NSArray of InternetAddress objects.
|
void |
ERMailDelivery.setToAddresses(NSArray<String> toAddresses)
Sets the to-addresses array for the current message instance
カレント・メッセージ・インスタンスの送信先 NSArray アドレスをセットします
|
Modifier and Type | Method and Description |
---|---|
void |
ERMailer.sendMailMessages(NSArray mailMessages)
Sends an array of ERCMailMessage objects.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ERJGroupsSynchronizer._writeCacheChanges(int transactionID,
NSArray cacheChanges) |
Modifier and Type | Field and Description |
---|---|
static NSArray<String> |
ERQMGridBlock.BLOCK_NAME |
static NSArray<String> |
ERQMGrid.COLUMN_NAME |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERQMInputFlipSwitch.list() |
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
FileUploader._options() |
protected NSArray<String> |
AjaxUpload._options() |
Modifier and Type | Field and Description |
---|---|
static NSArray<String> |
ERQMGridBlock.BLOCK_NAME |
static NSArray<String> |
ERQMGrid.COLUMN_NAME |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERQMInputFlipSwitch.list() |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERLuceneSynchronizationFactory.createTableStatementsForEntityGroup(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.createTableStatementsForEntityGroups(NSArray arg0) |
EOModel |
ERLuceneAdaptorChannel.describeModelWithTableNames(NSArray anArray) |
NSArray |
ERLuceneSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroup(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.dropPrimaryKeySupportStatementsForEntityGroups(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.dropTableStatementsForEntityGroup(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.dropTableStatementsForEntityGroups(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.primaryKeyConstraintStatementsForEntityGroup(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.primaryKeyConstraintStatementsForEntityGroups(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.primaryKeySupportStatementsForEntityGroup(NSArray arg0) |
NSArray |
ERLuceneSynchronizationFactory.primaryKeySupportStatementsForEntityGroups(NSArray arg0) |
String |
ERLuceneSynchronizationFactory.schemaCreationScriptForEntities(NSArray arg0,
NSDictionary arg1) |
NSArray |
ERLuceneSynchronizationFactory.schemaCreationStatementsForEntities(NSArray arg0,
NSDictionary arg1) |
void |
ERLuceneAdaptorChannel.selectAttributes(NSArray attributesToFetch,
EOFetchSpecification fs,
boolean shouldLock,
EOEntity entity) |
void |
ERLuceneAdaptorChannel.setAttributesToFetch(NSArray attributesToFetch) |
static org.apache.lucene.search.Sort |
ERLuceneAdaptorChannel.sortForSortOrderings(NSArray<EOSortOrdering> sortOrderings)
Convenience method to create a Lucene sort from an EOF sort ordering array.
|
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERMDAjaxUpdateAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERMDDefaultActionAssignment.defaultLeftActions(com.webobjects.directtoweb.D2WContext c)
Calculates the default left actions names for a given context.
|
NSArray<String> |
ERMDDefaultConfigurationNameAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
NSArray |
ERMDDefaultCSSAssignment.dependentKeys(String keyPath)
Implementation of the
ERDComputingAssignmentInterface . |
Modifier and Type | Field and Description |
---|---|
static ERXKey<NSDictionary<String,NSArray<String>>> |
ERMDAjaxNotificationCenter.PROPERTY_DEPENDENCIES |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERMD2WColumnSelector.currentSectionKeys() |
NSArray<String> |
ERMDAjaxNotificationCenter.propertyChanged(com.webobjects.directtoweb.D2WContext context) |
NSArray |
ERMD2WColumnSelector.sectionsContents() |
NSArray<ERD2WContainer> |
ERMDWizardBanner.tabSectionsContents() |
Modifier and Type | Method and Description |
---|---|
NSDictionary<String,NSArray<String>> |
ERMDAjaxNotificationCenter.propertyDependencies(com.webobjects.directtoweb.D2WContext context) |
Modifier and Type | Method and Description |
---|---|
NSArray<Object> |
ERMD2WEditRelationship.masterObjectAndRelationshipKey() |
Modifier and Type | Method and Description |
---|---|
void |
ERMD2WEditRelationship.setMasterObjectAndRelationshipKey(NSArray a) |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERMD2WListFilter.filterChoices() |
NSArray<String> |
ERMD2WListFilter.searchKey() |
NSArray<NSArray<String>> |
ERMD2WListFilter.searchKeyGroups() |
Modifier and Type | Method and Description |
---|---|
NSArray<NSArray<String>> |
ERMD2WListFilter.searchKeyGroups() |
Modifier and Type | Method and Description |
---|---|
NSArray<EOEnterpriseObject> |
ERMD2WEditToOneTypeAhead.allItems() |
NSArray<EOEnterpriseObject> |
ERMD2WEditToOneTypeAhead.currentObjects()
Returns the array of available matching destination entities
|
NSArray<EOEnterpriseObject> |
ERMD2WEditToOneTypeAhead.destinationObjectsWithQualifier(EOQualifier qual) |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERMDInspectPageRepetition.keyPathsWithValidationExceptions() |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERMD2WAttributeQueryDelegate.searchKey(ERMD2WAttributeQueryDelegate.ERMD2WQueryComponent sender,
int searchFieldIndex) |
Modifier and Type | Method and Description |
---|---|
NSArray<?> |
ERMEditRelationshipPageInterface.masterObjectAndRelationshipKey()
Returns an NSArray containing the masterObject and relationshipKey
|
Modifier and Type | Method and Description |
---|---|
void |
ERMEditRelationshipPageInterface.setMasterObjectAndRelationshipKey(NSArray<?> a)
Sets the masterObject and relationshipKey
|
Modifier and Type | Method and Description |
---|---|
NSArray<?> |
ERMODEditRelationshipPage.masterObjectAndRelationshipKey()
Returns an array containing the master object (index 0) and relationship key (index 1).
|
NSArray<EOSortOrdering> |
ERMODEditRelationshipPage.sortOrderings() |
Modifier and Type | Method and Description |
---|---|
protected boolean |
ERMODEditRelationshipPage.isValidSortKey(NSArray<String> displayPropertyKeys,
String sortKey)
Validates the given sort key (is it a display key, an attribute, or a valid attribute path).
|
void |
ERMODEditRelationshipPage.setMasterObjectAndRelationshipKey(NSArray<?> a)
Sets the master object and relationship key.
|
Modifier and Type | Method and Description |
---|---|
NSArray<Object> |
ERMTD2WEditRelationship.masterObjectAndRelationshipKey() |
Modifier and Type | Method and Description |
---|---|
void |
ERMTD2WEditRelationship.setMasterObjectAndRelationshipKey(NSArray a) |
Modifier and Type | Method and Description |
---|---|
NSArray<EOAttribute> |
Neo4JChannel.attributesToFetch() |
NSArray<EOAttribute> |
Neo4JChannel.describeResults() |
Modifier and Type | Method and Description |
---|---|
void |
Neo4JChannel.selectAttributes(NSArray<EOAttribute> attributes,
EOFetchSpecification fetchSpec,
boolean isLocking,
EOEntity entity) |
void |
Neo4JChannel.setAttributesToFetch(NSArray<EOAttribute> paramNSArray) |
Modifier and Type | Method and Description |
---|---|
static Cursor<Ersatz> |
EOUtilities.sort(Cursor<? extends Ersatz> c,
EOEntity entity,
NSArray<EOSortOrdering> sortOrderings) |
Constructor and Description |
---|
SortingComparator(EOEntity entity,
NSArray<EOSortOrdering> sortOrdering) |
Modifier and Type | Method and Description |
---|---|
NSArray<ERXModelVersion> |
ERPersistentSessionStorage0.modelDependencies() |
Modifier and Type | Field and Description |
---|---|
protected NSArray<?> |
ERPChart._items |
static NSArray<String> |
ERPPieChart.SUPPORTED_TYPES
logging support
|
static NSArray<String> |
ERPCategoryChart.SUPPORTED_TYPES |
Modifier and Type | Method and Description |
---|---|
NSArray<?> |
ERPChart.items() |
protected NSArray<String> |
ERPPieChart.supportedTypes() |
protected abstract NSArray<String> |
ERPChart.supportedTypes() |
protected NSArray<String> |
ERPCategoryChart.supportedTypes() |
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
AjaxUpdaterButton._options() |
protected NSArray<String> |
AjaxUpdater._options() |
protected NSArray<String> |
AjaxRequestButton._options() |
protected NSArray<String> |
AjaxRequest._options() |
Modifier and Type | Field and Description |
---|---|
static NSArray<String> |
CalendarDateSelect.dateFormats |
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
ModalBoxOnLoad._options() |
protected NSArray<String> |
ModalBoxLink._options() |
protected NSArray<String> |
ModalBoxButton._options() |
protected NSArray<String> |
ModalBox._options() |
protected NSArray<String> |
AjaxUpload._options() |
Modifier and Type | Method and Description |
---|---|
static NSArray |
ValueFactory.blobArray(NSData value) |
static NSArray |
ValueFactory.stringArray(String value) |
Modifier and Type | Method and Description |
---|---|
static NSData |
ValueConversion.blobArray(NSArray value) |
static String |
ValueConversion.stringArray(NSArray value) |
Modifier and Type | Method and Description |
---|---|
NSArray<org.quartz.Trigger> |
ERQSJobInformations.getTriggersOfJob() |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERQSJobDescription4Test.recipients(boolean executionSucceeded) |
NSArray<String> |
ERQSJobDescription.recipients(boolean executionSucceeded)
If you set up the listener to send email when the job is done, recipient() will be used to send emails.
|
protected NSArray<String> |
ERQSJobListener.recipients(org.quartz.JobExecutionContext jobexecutioncontext,
boolean jobRanSuccessfully)
Return a list of recipients depending on the good or bad execution of the job.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ERQSJobSupervisor.addOrModifyJobs(NSArray<? extends ERQSJobDescription> jobs2Check)
From jobs2Check (a fresh list of ERQSJobDescription objects), addOrModifyJobs checks if jobs must be added or modified.
|
protected void |
ERQSJobSupervisor.removeObsoleteJobs(NSArray<? extends ERQSJobDescription> jobs2Check)
From jobs2Check (a fresh list of ERQSJobDescription objects), removeJobs checks if jobs must be removed.
|
protected void |
ERQSJobListener.sendMail(String subject,
String textContent,
NSArray<String> recipients)
Sends an plain text email to:
the recipients passed as parameters.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray |
MockEditingContext.entityNamesToGetFromDatabase |
Modifier and Type | Method and Description |
---|---|
abstract NSArray<? extends ERQSJobDescription> |
ERQSSchedulerServiceFrameworkPrincipal.getListOfJobDescription(EOEditingContext editingContext)
Expects that this method never returns null but an empty array if there is no job
|
NSArray<ERQSJobDescription> |
ERQSSchedulerFP4Test.getListOfJobDescription(EOEditingContext editingContext) |
Modifier and Type | Method and Description |
---|---|
void |
MockEditingContext.setEntityNamesToGetFromDatabase(NSArray theEntityNamesToGetFromDatabase)
Defines which entities should be fetched from the rootObjectStore.
|
Modifier and Type | Field and Description |
---|---|
protected NSArray |
WRQuickReport._attributeArray |
protected NSArray |
WRReportEditor._attributeList |
protected NSArray |
WRAttributeListEditor._attributeList |
protected NSArray |
WRReport._colorDict |
protected NSArray |
WRQuickReport._criteriaArray |
protected NSArray |
WRAttributeGroup._groups |
protected NSArray |
WRReportEditor._masterCriteriaList |
protected NSArray |
WRQuickReport._objects |
protected NSArray |
WRReport._recordGroupDisplayTypes |
protected NSArray |
WRLayoutEditor._recordGroupDisplayTypes |
protected NSArray |
WRReport._reportStyles |
protected NSArray |
WRLayoutEditor._reportStyles |
Modifier and Type | Method and Description |
---|---|
NSArray |
WRAttributeListEditor.moveUpArray(DRAttribute member,
boolean up,
NSArray arr1) |
NSMutableArray |
WRReportEditor.newArraySans(NSArray arr1,
Object member) |
NSMutableArray |
WRAttributeListEditor.newArraySans(NSArray arr1,
Object member) |
void |
WRReportEditor.replaceMCWith(DRMasterCriteria oldMC,
NSArray smcList) |
void |
DRMasterCriteriaEditing.replaceMCWith(DRMasterCriteria oldMC,
NSArray smcList) |
void |
WRReportEditor.setAttributeList(NSArray v) |
void |
WRAttributeListEditor.setAttributeList(NSArray v) |
void |
WRReportEditor.setMasterCriteriaList(NSArray v) |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
NSDictionaryClassDescription.attributeKeys() |
NSArray<String> |
MapClassDescription.attributeKeys() |
NSArray<String> |
BeanInfoClassDescription.attributeKeys() |
NSArray<ERXRestRequestNode> |
ERXRestRequestNode.children()
Returns the children of this node.
|
NSArray<T> |
ERXRestFetchSpecification.Results.objects()
Returns the objects from this batch.
|
NSArray<T> |
ERXRestFetchSpecification.objects(EOEditingContext editingContext,
NSKeyValueCoding options)
Fetches the objects into the given editing context with the effective attributes of this fetch specification.
|
NSArray<T> |
ERXRestFetchSpecification.objects(EOEditingContext editingContext,
WORequest request)
Fetches the objects into the given editing context with the effective attributes of this fetch specification.
|
NSArray<T> |
ERXRestFetchSpecification.objects(NSArray<T> objects,
EOEditingContext editingContext,
NSKeyValueCoding options)
Applies the effective attributes of this fetch specification to the given array, filtering, sorting, and cutting
into batches accordingly.
|
NSArray<T> |
ERXRestFetchSpecification.objects(NSArray<T> objects,
EOEditingContext editingContext,
WORequest request)
Applies the effective attributes of this fetch specification to the given array, filtering, sorting, and cutting
into batches accordingly.
|
NSArray<EOSortOrdering> |
ERXRestFetchSpecification.sortOrderings(EOEditingContext editingContext,
NSKeyValueCoding options)
Returns the effective sort orderings.
|
NSArray<String> |
NSDictionaryClassDescription.toManyRelationshipKeys() |
NSArray<String> |
MapClassDescription.toManyRelationshipKeys() |
NSArray<String> |
BeanInfoClassDescription.toManyRelationshipKeys() |
NSArray<String> |
NSDictionaryClassDescription.toOneRelationshipKeys() |
NSArray<String> |
MapClassDescription.toOneRelationshipKeys() |
NSArray<String> |
BeanInfoClassDescription.toOneRelationshipKeys() |
Modifier and Type | Method and Description |
---|---|
NSArray<T> |
ERXRestFetchSpecification.objects(NSArray<T> objects,
EOEditingContext editingContext,
NSKeyValueCoding options)
Applies the effective attributes of this fetch specification to the given array, filtering, sorting, and cutting
into batches accordingly.
|
NSArray<T> |
ERXRestFetchSpecification.objects(NSArray<T> objects,
EOEditingContext editingContext,
WORequest request)
Applies the effective attributes of this fetch specification to the given array, filtering, sorting, and cutting
into batches accordingly.
|
Constructor and Description |
---|
ERXRestFetchSpecification(String entityName,
EOQualifier defaultQualifier,
EOQualifier baseQualifier,
ERXKeyFilter qualifierFilter,
NSArray<EOSortOrdering> defaultSortOrderings,
int defaultBatchSize)
Creates a new ERXRestFetchSpecification with a maximum batch size of 100 and with request qualifiers enabled.
|
ERXRestFetchSpecification(String entityName,
EOQualifier defaultQualifier,
NSArray<EOSortOrdering> defaultSortOrderings)
Creates a new ERXRestFetchSpecification with a maximum batch size of 100, but with batching turned off by
default.
|
ERXRestFetchSpecification(String entityName,
EOQualifier defaultQualifier,
NSArray<EOSortOrdering> defaultSortOrderings,
int defaultBatchSize)
Creates a new ERXRestFetchSpecification with a maximum batch size of 100.
|
Results(NSArray<T> objects,
int startIndex,
int batchSize,
int totalCount)
Constructs a new Results object.
|
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
IERXRestRequest.keyNames() |
NSArray<String> |
ERXWORestRequest.keyNames() |
NSArray<String> |
ERXStringRestRequest.keyNames() |
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
ERXRouteController.accessControlAllowRequestHeaders(NSArray<String> requestHeaders)
Returns the allowed request headers given the requested headers.Set the property ERXRest.accessControlAllowRequestHeaders to override
the default of just returning the requested headers.
|
protected NSArray<String> |
ERXRouteController.accessControlAllowRequestMethods(String requestMethod)
Returns the allowed request methods given the requested method.
|
NSArray<String> |
ERXRouteRequestHandler.getRequestHandlerPathForRequest(WORequest request) |
NSArray<ERXRoute> |
ERXRouteRequestHandler.routes()
Returns the routes for this request handler.
|
NSArray<ERXRoute> |
ERXRouteRequestHandler.routesForControllerClass(Class<? extends ERXRouteController> routeController)
Returns the routes for the given controller class.
|
Modifier and Type | Method and Description |
---|---|
protected NSArray<String> |
ERXRouteController.accessControlAllowRequestHeaders(NSArray<String> requestHeaders)
Returns the allowed request headers given the requested headers.Set the property ERXRest.accessControlAllowRequestHeaders to override
the default of just returning the requested headers.
|
Object[] |
ERXRouteRequestHandler.getRequestActionClassAndNameForPath(NSArray requestHandlerPath) |
WOActionResults |
ERXRouteController.json(EOClassDescription entity,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a JSON response.
|
WOActionResults |
ERXRouteController.json(EOEditingContext editingContext,
String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a JSON response.
|
WOActionResults |
ERXRouteController.json(String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a JSON response.
|
WOActionResults |
ERXRouteController.plist(EOClassDescription entity,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a JSON response.
|
WOActionResults |
ERXRouteController.plist(EOEditingContext editingContext,
String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a JSON response.
|
WOActionResults |
ERXRouteController.plist(String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a PList response.
|
WOActionResults |
ERXRouteController.response(EOClassDescription entity,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as an response in the format returned from the format() method.
|
WOActionResults |
ERXRouteController.response(EOEditingContext editingContext,
String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as an response in the format returned from the format() method.
|
WOActionResults |
ERXRouteController.response(ERXRestFormat format,
EOClassDescription entity,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a response in the given format.
|
WOActionResults |
ERXRouteController.response(ERXRestFormat format,
EOEditingContext editingContext,
String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a response in the given format.
|
WOActionResults |
ERXRouteController.response(ERXRestFormat format,
String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as a response in the given format.
|
WOActionResults |
ERXRouteController.response(String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as an response in the format returned from the format() method.
|
WOActionResults |
ERXRouteController.xml(EOClassDescription entity,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as an XML response.
|
WOActionResults |
ERXRouteController.xml(EOEditingContext editingContext,
String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as an XML response.
|
WOActionResults |
ERXRouteController.xml(String entityName,
NSArray<?> values,
ERXKeyFilter filter)
Returns the given array as an XML response.
|
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
SeleniumTest.MetaCommand.arguments() |
NSArray<SeleniumTest.Element> |
SeleniumTest.elements() |
NSArray<File> |
SeleniumTestFilesFinder.findTests(File root) |
NSArray<File> |
DefaultSeleniumTestFilesFinder.findTests(File rootDir) |
NSArray<File> |
SeleniumTestSuitePage.testFiles() |
Modifier and Type | Method and Description |
---|---|
void |
SeleniumTest.assignElements(NSArray<SeleniumTest.Element> elements) |
Constructor and Description |
---|
MetaCommand(String name,
NSArray<String> arguments) |
SeleniumTest(String name,
NSArray<SeleniumTest.Element> elements) |
Modifier and Type | Method and Description |
---|---|
protected NSArray<SeleniumTest.Element> |
SeleniumIncludeTestFilter.getIncludedArguments(String name) |
NSArray<SeleniumTestFilter> |
SeleniumCompositeTestFilter.getTestFilters() |
Constructor and Description |
---|
SeleniumIncludeTestFilter(NSArray<File> searchPaths) |
Modifier and Type | Field and Description |
---|---|
NSArray<EOModel> |
SEEOModelIndexPage._models |
Modifier and Type | Method and Description |
---|---|
NSArray<SEEntityStats> |
SEEOModelShowPage.entitiesStats() |
Modifier and Type | Method and Description |
---|---|
NSArray<SEEntityStats> |
SEModelStats.entityStats() |
NSArray<SEModelStats> |
SEModelGroupStats.modelStats() |
NSArray<SESnapshotStats> |
SEEntityStats.snapshotStats() |
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERTaggableEntity.fetchAllTags(EOEditingContext editingContext)
Returns an array of all of the available tags in the system.
|
NSArray<String> |
ERTaggableEntity.fetchRelatedTags(EOEditingContext editingContext,
Object tags)
Finds other tags that are related to the tags passed through the tags
parameter, by finding common records that share similar sets of tags.
|
NSArray<T> |
ERTaggableEntity.fetchTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
int limit,
Object tags)
Fetches the list of objects of this entity type that are tagged
with the given tags.
|
NSArray<T> |
ERTaggableEntity.fetchTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
int limit,
Object tags,
EOQualifier additionalQualifier)
Fetches the list of objects of this entity type that are tagged
with the given tags.
|
NSArray<T> |
ERTaggableEntity.fetchTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
int limit,
Object tags,
EOQualifier additionalQualifier,
NSArray<EOSortOrdering> sortOrderings)
Fetches the sorted list of objects of this entity type that are tagged
with the given tags.
|
NSArray<T> |
ERTaggableEntity.fetchTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
Object tags)
Fetches the list of objects of this entity type that are tagged
with the given tags with unlimited results.
|
NSArray<T> |
ERTaggableEntity.fetchTaggedWith(EOEditingContext editingContext,
Object tags)
Fetches the list of objects of this entity type that are tagged
with all of the given tags with unlimited results.
|
NSArray<String> |
ERTaggableEntity.fetchTagsLike(EOEditingContext editingContext,
String startsWith)
Returns an array of all of the available tags in the system that start with
the given string.
|
NSArray<String> |
ERTaggableEntity.splitTagNames(Object tags)
Splits the given "tags" object (String, array of Strings, etc) into an array of normalized tag strings.
|
static NSArray<EOEntity> |
ERTaggableEntity.taggableEntities()
Returns an array of taggable entities.
|
NSArray<String> |
ERTaggable.tagNames()
Returns an array of strings containing the tag names applied to this object.
|
NSArray<ERTag> |
ERTaggable.tags()
Returns an array of ERTags associated with this item.
|
Modifier and Type | Method and Description |
---|---|
static NSDictionary<EOEntity,NSArray<? extends ERXGenericRecord>> |
ERTaggableEntity.fetchAllTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
int limit,
Object tags)
Fetches all the EOs of all taggable entities that are associated with the given tags.
|
static NSDictionary<EOEntity,NSArray<? extends ERXGenericRecord>> |
ERTaggableEntity.fetchAllTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
Object tags)
Fetches all the EOs of all taggable entities that are associated with the given tags (unlimited).
|
static NSDictionary<EOEntity,NSArray<? extends ERXGenericRecord>> |
ERTaggableEntity.fetchAllTaggedWith(EOEditingContext editingContext,
Object tags)
Fetches all the EOs of all taggable entities that are associated with all of the given tags (unlimited).
|
Modifier and Type | Method and Description |
---|---|
<U> NSDictionary<String,U> |
ERTaggableEntity.cloud(EOEditingContext editingContext,
NSArray<U> categoryList)
Takes the result of a tagCount call and an array of categories and
distributes the entries in the tagCount hash evenly across the
categories based on the count value for each tag.
|
<U> NSDictionary<String,U> |
ERTaggableEntity.cloud(NSDictionary<String,Integer> tagHash,
NSArray<U> categoryList)
Takes the result of a tagCount call and an array of categories and
distributes the entries in the tagCount hash evenly across the
categories based on the count value for each tag.
|
NSArray<T> |
ERTaggableEntity.fetchTaggedWith(EOEditingContext editingContext,
ERTag.Inclusion inclusion,
int limit,
Object tags,
EOQualifier additionalQualifier,
NSArray<EOSortOrdering> sortOrderings)
Fetches the sorted list of objects of this entity type that are tagged
with the given tags.
|
Modifier and Type | Method and Description |
---|---|
NSArray<String> |
ERTagField.availableTags() |
NSArray<String> |
ERTagCloud.categories() |
NSArray<String> |
ERTagCloud.tagNames() |
Modifier and Type | Method and Description |
---|---|
NSArray<ERXModelVersion> |
ERTaggableEntity0.modelDependencies() |
Modifier and Type | Method and Description |
---|---|
static NSArray<ERTag> |
_ERTag.fetchAllERTags(EOEditingContext editingContext) |
static NSArray<ERTag> |
_ERTag.fetchAllERTags(EOEditingContext editingContext,
NSArray<EOSortOrdering> sortOrderings) |
static NSArray<ERTag> |
_ERTag.fetchERTags(EOEditingContext editingContext,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings) |
Modifier and Type | Method and Description |
---|---|
static NSArray<ERTag> |
_ERTag.fetchAllERTags(EOEditingContext editingContext,
NSArray<EOSortOrdering> sortOrderings) |
static NSArray<ERTag> |
_ERTag.fetchERTags(EOEditingContext editingContext,
EOQualifier qualifier,
NSArray<EOSortOrdering> sortOrderings) |
Modifier and Type | Field and Description |
---|---|
NSArray |
ERXWOTestInterface.allTests |
NSArray |
ERXWOTestResult.error |
Modifier and Type | Method and Description |
---|---|
NSArray |
ERXWOTestInterface.allTests() |
protected NSArray |
ERXWOTestInterface.bundles() |
NSArray |
ERXTestResult.errorsArray() |
NSArray |
ERXTestResult.failuresArray() |
Modifier and Type | Method and Description |
---|---|
protected abstract NSArray |
PayPalSingleItemLinkBase.additionalBindingList()
for subclasses to add additional bindings
|
protected NSArray |
PayPalSingleItemHyperlink.additionalBindingList()
additionalBindingList is a NSArray of bindings to pull when we synchronize our values with the WOComponent's binding settings.
|
protected NSArray |
PayPalSingleItemFormLink.additionalBindingList()
additionalBindingList is a NSArray of bindings to pull when we
synchronize our values with the WOComponent's binding settings.
|
protected NSArray |
PayPalSingleItemLinkBase.baseBindingList()
the base list of bindings to pull from WOComponents
|
NSArray |
PayPalSingleItemFormLink.encodedBindings()
NSArray of binding values presented in the way PayPal expects them.
|
Copyright © 2002 – 2024 Project Wonder.