Inflector#enableCache()

enableCachepublic Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:121

DS.Model#didLoad event

didLoad Defined in addon/-private/system/model/model.js:430 Fired when the record is loaded from the server.

LinkComponent#loadingHref

loadingHrefStringprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:759 The default href value to use while a link-to is loading. Only applies when tagName is 'a' Default: #

DS.ManyArray#isLoaded

isLoadedBoolean Defined in addon/-private/system/many-array.js:109 The loading state of this array

Component#destroy()

destroyprivate Inherited from Ember.CoreObject but overwritten in packages/ember-views/lib/mixins/view_support.js:328 You must call destroy on a view to destroy the view (and all of its child views). This will remove the view from any parent node, then make sure that the DOM element managed by the view can be released by the memory manager.

DS.JSONAPISerializer#_normalizeRelationshipDataHelper()

_normalizeRelationshipDataHelper (relationshipDataHash) Objectprivate Defined in addon/serializers/json-api.js:138 Parameters: relationshipDataHash Object Returns: Object

Registry#normalizeFullName()

normalizeFullName (fullName) Stringprivate Defined in packages/container/lib/registry.js:285 A hook to enable custom fullName normalization behaviour Parameters: fullName String Returns: String normalized fullName

Registry#resolve()

resolve (fullName, options) Functionprivate Defined in packages/container/lib/registry.js:218 Given a fullName return the corresponding factory. By default resolve will retrieve the factory from the registry. let registry = new Registry(); registry.register('api:twitter', Twitter); registry.resolve('api:twitter') // => Twitter Optionally the registry can be provided with a custom resolver. If provided, resolve will first provide the custom resolver the opportunity to resolve the fullNa

Debug.registerDeprecationHandler()

registerDeprecationHandler (handler) publicstatic Defined in packages/ember-debug/lib/index.js:224 Available since 2.1.0 Allows for runtime registration of handler functions that override the default deprecation behavior. Deprecations are invoked by calls to Ember.deprecate. The following example demonstrates its usage by registering a handler that throws an error if the message contains the word "should", otherwise defers to the default handler. Ember.Debug.registerDeprecationHandler((mess

DS.Store#retrieveManagedInstance()

retrieveManagedInstance (modelName, name, fallbacks) Ember.Objectprivate Defined in addon/-private/system/store.js:2438 Retrieve a particular instance from the container cache. If not found, creates it and placing it in the cache. Enabled a store to manage local instances of adapters and serializers. Parameters: modelName String the object modelName name String the object name fallbacks Array the fallback objects to lookup if the lookup for modelName or 'application' fails R