Route#serializeQueryParam()

serializeQueryParam (value, urlKey, defaultValueType) private Defined in packages/ember-routing/lib/system/route.js:390 Serializes value of the query parameter based on defaultValueType Parameters: value Object urlKey String defaultValueType String

ProxyMixin#content

contentEmber.Objectprivate Defined in packages/ember-runtime/lib/mixins/-proxy.js:54 The object whose properties will be forwarded. Default: null

Ember.inject

Ember.inject Namespace PUBLIC Defined in: packages/ember-runtime/lib/inject.js:4 Module: ember-runtime Namespace for injection helper methods.

Ember.deprecateFunc()

deprecateFunc (message, options, func) Functionprivate Defined in packages/ember-debug/lib/index.js:91 Alias an old, deprecated method with its new counterpart. Display a deprecation warning with the provided message and a stack trace (Chrome and Firefox only) when the assigned method is called. In a production build, this method is defined as an empty function (NOP). Ember.oldMethod = Ember.deprecateFunc('Please use the new, updated method', Ember.newMethod); Parameters: message String

PromiseProxyMixin#reason

reasonpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:93 If the proxied promise is rejected this will contain the reason provided. Default: null

DS.ManyArray#reload()

reloadpublic Defined in addon/-private/system/many-array.js:236

DS.JSONSerializer#_getMappedKey()

_getMappedKey (key) Stringprivate Defined in addon/serializers/json.js:795 Looks up the property key that was set by the custom attr mapping passed to the serializer. Parameters: key String Returns: String key

DataAdapter#getRecordKeywords()

getRecordKeywordsArrayprivate Defined in packages/ember-extension-support/lib/data_adapter.js:447 Returns keywords to match when searching records. Returns: Array Relevant keywords for search.

DS.Store#unloadRecord()

unloadRecord (record) Defined in addon/-private/system/store.js:406 For symmetry, a record can be unloaded via the store. Only non-dirty records can be unloaded. Example store.findRecord('post', 1).then(function(post) { store.unloadRecord(post); }); Parameters: record DS.Model

Ember.getEngineParent()

getEngineParent (engine) EngineInstancepublic Defined in packages/ember-application/lib/system/engine-parent.js:10 getEngineParent retrieves an engine instance's parent instance. Parameters: engine EngineInstance An engine instance. Returns: EngineInstance The parent engine instance.