Interface ObjectDefinitionComp
-
- All Known Subinterfaces:
ObjectDefinition
public interface ObjectDefinitionComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<Alert>
getAlerts()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getAlerts()
instead.Iterator<ImportRuleDefinition>
getImportRuleDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getImportRuleDefinitions()
instead.Iterator<ObjectFieldDefinition>
getObjectFieldDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getObjectFieldDefinitions()
instead.Iterator<ObjectIndex>
getObjectIndexes()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getObjectIndexes()
instead.Iterator<QueryCondition>
getQueryConditions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getQueryConditions()
instead.Iterator<QueryFilter>
getQueryFilters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getQueryFilters()
instead.Iterator<ObjectFieldDefinition>
getReferringObjectFieldDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getReferringObjectFieldDefinitions()
instead.
-
-
-
Method Detail
-
getAlerts
@Deprecated Iterator<Alert> getAlerts()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getAlerts()
instead.
-
getImportRuleDefinitions
@Deprecated Iterator<ImportRuleDefinition> getImportRuleDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getImportRuleDefinitions()
instead.Get anIterator
over an ordered collection ofImportRuleDefinitions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
.- Returns:
- An
Iterator
over an ordered collection ofImportRuleDefinition
objects .
-
getObjectIndexes
@Deprecated Iterator<ObjectIndex> getObjectIndexes()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getObjectIndexes()
instead.Get anIterator
over an ordered collection ofObjectIndexes
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The object definition for this index- Returns:
- An
Iterator
over an ordered collection ofObjectIndex
objects .
-
getObjectFieldDefinitions
@Deprecated Iterator<ObjectFieldDefinition> getObjectFieldDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getObjectFieldDefinitions()
instead.Get anIterator
over an ordered collection ofObjectFieldDefinitions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The ObjectDefinition that this Field belongs to.- Returns:
- An
Iterator
over an ordered collection ofObjectFieldDefinition
objects .
-
getReferringObjectFieldDefinitions
@Deprecated Iterator<ObjectFieldDefinition> getReferringObjectFieldDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getReferringObjectFieldDefinitions()
instead.Get anIterator
over an ordered collection ofReferringObjectFieldDefinitions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The ObjectDefinition that this Field refers to if it is a relation.- Returns:
- An
Iterator
over an ordered collection ofObjectFieldDefinition
objects .
-
getQueryConditions
@Deprecated Iterator<QueryCondition> getQueryConditions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getQueryConditions()
instead.Get anIterator
over an ordered collection ofQueryConditions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
.- Returns:
- An
Iterator
over an ordered collection ofQueryCondition
objects .
-
getQueryFilters
@Deprecated Iterator<QueryFilter> getQueryFilters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useObjectDefinition.getQueryFilters()
instead.Get anIterator
over a collection ofQueryFilters
, the collection will be ordered by DisplayOrder Name. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
.- Returns:
- An
Iterator
over a collection ofQueryFilter
objects , the collection will be ordered by DisplayOrder Name.
-
-