UNPKG

@aurahelper/languages

Version:

Language Libraries to work with XML, Aura, Apex... files. tokenizers, parsers, system classes and much more

1,712 lines 96.7 kB
{ "id": "Cache.orgpartition", "nodeType": "class", "name": "OrgPartition", "namespace": "Cache", "startToken": { "type": "declaration.entity.name.class", "text": "OrgPartition", "textToLower": "orgpartition", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.class_OrgPartition_-1:0" }, "order": 0, "memberOrder": 0, "accessModifier": { "type": "keyword.modifier.access", "text": "global", "textToLower": "global", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "keyword.modifier.access_global_-1:0" }, "sharingModifier": { "type": "keyword.modifier.sharing", "text": "without sharing", "textToLower": "without sharing", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "keyword.modifier.sharing_without sharing_-1:0" }, "description": "Contains methods to manage cache values in the org cache of a specific partition. Unlike the session cache, the org cache is not tied to any session. It’s available to the organization across requests and to all users.", "documentation": "https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_class_cache_OrgPartition.htm", "classes": {}, "interfaces": {}, "enums": {}, "variables": {}, "methods": { "contains(string)": { "id": "Cache.orgpartition.method.contains(string)", "nodeType": "method", "name": "contains", "startToken": { "type": "declaration.entity.name.function", "text": "contains", "textToLower": "contains", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_contains_-1:0" }, "parentId": "Cache.orgpartition", "order": 1, "memberOrder": 1, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Boolean contains(String key)", "overrideSignature": "public override Boolean contains(String key)", "simplifiedSignature": "contains(String)", "datatype": { "id": "Cache.orgpartition.contains.datatype.Boolean", "nodeType": "datatype", "name": "Boolean", "startToken": { "type": "datatype.primitive", "text": "Boolean", "textToLower": "boolean", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 14 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Boolean_0:7" }, "parentId": "Cache.orgpartition.contains", "order": 0, "memberOrder": 0, "type": "Boolean" }, "description": "Returns true if the cache partition contains a cached value corresponding to the specified key.", "parentName": "OrgPartition", "variables": {}, "params": { "key": { "id": "Cache.orgpartition.method.contains(string).varParam.key", "nodeType": "variable", "name": "key", "startToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 31 }, "end": { "line": 0, "character": 34 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:31" }, "endToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 31 }, "end": { "line": 0, "character": 34 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:31" }, "parentId": "Cache.orgpartition.method.contains(string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.orgpartition.contains.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 24 }, "end": { "line": 0, "character": 30 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:24" }, "parentId": "Cache.orgpartition.contains", "order": 0, "memberOrder": 0, "type": "String" }, "description": "A case-sensitive string value that uniquely identifies a cached value.", "scope": null } }, "queries": [], "exceptions": [] }, "get(string)": { "id": "Cache.orgpartition.method.get(string)", "nodeType": "method", "name": "get", "startToken": { "type": "declaration.entity.name.function", "text": "get", "textToLower": "get", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_get_-1:0" }, "parentId": "Cache.orgpartition", "order": 2, "memberOrder": 2, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Object get(String key)", "overrideSignature": "public override Object get(String key)", "simplifiedSignature": "get(String)", "datatype": { "id": "Cache.orgpartition.get.datatype.Object", "nodeType": "datatype", "name": "Object", "startToken": { "type": "datatype.primitive", "text": "Object", "textToLower": "object", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Object_0:7" }, "parentId": "Cache.orgpartition.get", "order": 0, "memberOrder": 0, "type": "Object" }, "description": "Returns the cached value corresponding to the specified key from the cache partition.", "parentName": "OrgPartition", "variables": {}, "params": { "key": { "id": "Cache.orgpartition.method.get(string).varParam.key", "nodeType": "variable", "name": "key", "startToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 25 }, "end": { "line": 0, "character": 28 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:25" }, "endToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 25 }, "end": { "line": 0, "character": 28 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:25" }, "parentId": "Cache.orgpartition.method.get(string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.orgpartition.get.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 18 }, "end": { "line": 0, "character": 24 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:18" }, "parentId": "Cache.orgpartition.get", "order": 0, "memberOrder": 0, "type": "String" }, "description": "A case-sensitive string value that uniquely identifies a cached value.", "scope": null } }, "queries": [], "exceptions": [] }, "get(system.type,string)": { "id": "Cache.orgpartition.method.get(system.type,string)", "nodeType": "method", "name": "get", "startToken": { "type": "declaration.entity.name.function", "text": "get", "textToLower": "get", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_get_-1:0" }, "parentId": "Cache.orgpartition", "order": 3, "memberOrder": 3, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Object get(System.Type cacheBuilder, String key)", "overrideSignature": "public override Object get(System.Type cacheBuilder, String key)", "simplifiedSignature": "get(System.Type,String)", "datatype": { "id": "Cache.orgpartition.get.datatype.Object", "nodeType": "datatype", "name": "Object", "startToken": { "type": "datatype.primitive", "text": "Object", "textToLower": "object", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Object_0:7" }, "parentId": "Cache.orgpartition.get", "order": 0, "memberOrder": 0, "type": "Object" }, "description": "Returns the cached value corresponding to the specified key from the partition cache. Use this method if your cached value is a class that implements the CacheBuilder interface.", "parentName": "OrgPartition", "variables": {}, "params": { "cachebuilder": { "id": "Cache.orgpartition.method.get(system.type,string).varParam.cachebuilder", "nodeType": "variable", "name": "cacheBuilder", "startToken": { "type": "declaration.entity.name.variable", "text": "cacheBuilder", "textToLower": "cachebuilder", "isAux": false, "range": { "start": { "line": 0, "character": 30 }, "end": { "line": 0, "character": 42 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_cacheBuilder_0:30" }, "endToken": { "type": "declaration.entity.name.variable", "text": "cacheBuilder", "textToLower": "cachebuilder", "isAux": false, "range": { "start": { "line": 0, "character": 30 }, "end": { "line": 0, "character": 42 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_cacheBuilder_0:30" }, "parentId": "Cache.orgpartition.method.get(system.type,string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.orgpartition.get.datatype.System.Type", "nodeType": "datatype", "name": "System.Type", "startToken": { "type": "datatype.support.class", "text": "System", "textToLower": "system", "isAux": false, "range": { "start": { "line": 0, "character": 18 }, "end": { "line": 0, "character": 24 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_System_0:18" }, "parentId": "Cache.orgpartition.get", "order": 0, "memberOrder": 0, "type": "System.Type" }, "scope": null }, "key": { "id": "Cache.orgpartition.method.get(system.type,string).varParam.key", "nodeType": "variable", "name": "key", "startToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 51 }, "end": { "line": 0, "character": 54 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:51" }, "endToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 51 }, "end": { "line": 0, "character": 54 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:51" }, "parentId": "Cache.orgpartition.method.get(system.type,string)", "order": 2, "memberOrder": 2, "datatype": { "id": "Cache.orgpartition.get.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 44 }, "end": { "line": 0, "character": 50 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:44" }, "parentId": "Cache.orgpartition.get", "order": 0, "memberOrder": 0, "type": "String" }, "description": "The Apex class that implements the CacheBuilder interface. A case-sensitive string value that, combined with the class name corresponding to the cacheBuilder parameter, uniquely identifies a cached value.", "scope": null } }, "queries": [], "exceptions": [] }, "getavggettime()": { "id": "Cache.orgpartition.method.getavggettime()", "nodeType": "method", "name": "getAvgGetTime", "startToken": { "type": "declaration.entity.name.function", "text": "getAvgGetTime", "textToLower": "getavggettime", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getAvgGetTime_-1:0" }, "parentId": "Cache.orgpartition", "order": 4, "memberOrder": 4, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Long getAvgGetTime()", "overrideSignature": "public override Long getAvgGetTime()", "simplifiedSignature": "getAvgGetTime()", "datatype": { "id": "Cache.orgpartition.getavggettime.datatype.Long", "nodeType": "datatype", "name": "Long", "startToken": { "type": "datatype.primitive", "text": "Long", "textToLower": "long", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 11 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Long_0:7" }, "parentId": "Cache.orgpartition.getavggettime", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the average time taken to get a key from the partition, in nanoseconds.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getavgvaluesize()": { "id": "Cache.orgpartition.method.getavgvaluesize()", "nodeType": "method", "name": "getAvgValueSize", "startToken": { "type": "declaration.entity.name.function", "text": "getAvgValueSize", "textToLower": "getavgvaluesize", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getAvgValueSize_-1:0" }, "parentId": "Cache.orgpartition", "order": 5, "memberOrder": 5, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Long getAvgValueSize()", "overrideSignature": "public override Long getAvgValueSize()", "simplifiedSignature": "getAvgValueSize()", "datatype": { "id": "Cache.orgpartition.getavgvaluesize.datatype.Long", "nodeType": "datatype", "name": "Long", "startToken": { "type": "datatype.primitive", "text": "Long", "textToLower": "long", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 11 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Long_0:7" }, "parentId": "Cache.orgpartition.getavgvaluesize", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the average item size for keys in the partition, in bytes.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getcapacity()": { "id": "Cache.orgpartition.method.getcapacity()", "nodeType": "method", "name": "getCapacity", "startToken": { "type": "declaration.entity.name.function", "text": "getCapacity", "textToLower": "getcapacity", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getCapacity_-1:0" }, "parentId": "Cache.orgpartition", "order": 6, "memberOrder": 6, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Double getCapacity()", "overrideSignature": "public override Double getCapacity()", "simplifiedSignature": "getCapacity()", "datatype": { "id": "Cache.orgpartition.getcapacity.datatype.Double", "nodeType": "datatype", "name": "Double", "startToken": { "type": "datatype.primitive", "text": "Double", "textToLower": "double", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Double_0:7" }, "parentId": "Cache.orgpartition.getcapacity", "order": 0, "memberOrder": 0, "type": "Double" }, "description": "Returns the percentage of cache used of the total capacity for this partition.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getkeys()": { "id": "Cache.orgpartition.method.getkeys()", "nodeType": "method", "name": "getKeys", "startToken": { "type": "declaration.entity.name.function", "text": "getKeys", "textToLower": "getkeys", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getKeys_-1:0" }, "parentId": "Cache.orgpartition", "order": 7, "memberOrder": 7, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Set<String> getKeys()", "overrideSignature": "public override Set<String> getKeys()", "simplifiedSignature": "getKeys()", "datatype": { "id": "Cache.orgpartition.getkeys.datatype.Set<String>", "nodeType": "datatype", "name": "Set<String>", "startToken": { "type": "datatype.collection", "text": "Set", "textToLower": "set", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 10 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Set_0:7" }, "parentId": "Cache.orgpartition.getkeys", "order": 0, "memberOrder": 0, "type": "Set", "value": { "id": "Cache.orgpartition.getkeys.datatype.Set<String>.value.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 11 }, "end": { "line": 0, "character": 17 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:11" }, "order": 0, "memberOrder": 0, "type": "String" } }, "description": "Returns a set of all keys that are stored in the cache partition and visible to the invoking namespace.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getmaxgettime()": { "id": "Cache.orgpartition.method.getmaxgettime()", "nodeType": "method", "name": "getMaxGetTime", "startToken": { "type": "declaration.entity.name.function", "text": "getMaxGetTime", "textToLower": "getmaxgettime", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getMaxGetTime_-1:0" }, "parentId": "Cache.orgpartition", "order": 8, "memberOrder": 8, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Long getMaxGetTime()", "overrideSignature": "public override Long getMaxGetTime()", "simplifiedSignature": "getMaxGetTime()", "datatype": { "id": "Cache.orgpartition.getmaxgettime.datatype.Long", "nodeType": "datatype", "name": "Long", "startToken": { "type": "datatype.primitive", "text": "Long", "textToLower": "long", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 11 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Long_0:7" }, "parentId": "Cache.orgpartition.getmaxgettime", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the maximum time taken to get a key from the partition, in nanoseconds.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getmaxvaluesize()": { "id": "Cache.orgpartition.method.getmaxvaluesize()", "nodeType": "method", "name": "getMaxValueSize", "startToken": { "type": "declaration.entity.name.function", "text": "getMaxValueSize", "textToLower": "getmaxvaluesize", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getMaxValueSize_-1:0" }, "parentId": "Cache.orgpartition", "order": 9, "memberOrder": 9, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Long getMaxValueSize()", "overrideSignature": "public override Long getMaxValueSize()", "simplifiedSignature": "getMaxValueSize()", "datatype": { "id": "Cache.orgpartition.getmaxvaluesize.datatype.Long", "nodeType": "datatype", "name": "Long", "startToken": { "type": "datatype.primitive", "text": "Long", "textToLower": "long", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 11 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Long_0:7" }, "parentId": "Cache.orgpartition.getmaxvaluesize", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the maximum item size for keys in the partition, in bytes.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getmissrate()": { "id": "Cache.orgpartition.method.getmissrate()", "nodeType": "method", "name": "getMissRate", "startToken": { "type": "declaration.entity.name.function", "text": "getMissRate", "textToLower": "getmissrate", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getMissRate_-1:0" }, "parentId": "Cache.orgpartition", "order": 10, "memberOrder": 10, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Double getMissRate()", "overrideSignature": "public override Double getMissRate()", "simplifiedSignature": "getMissRate()", "datatype": { "id": "Cache.orgpartition.getmissrate.datatype.Double", "nodeType": "datatype", "name": "Double", "startToken": { "type": "datatype.primitive", "text": "Double", "textToLower": "double", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Double_0:7" }, "parentId": "Cache.orgpartition.getmissrate", "order": 0, "memberOrder": 0, "type": "Double" }, "description": "Returns the miss rate in the partition.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getname()": { "id": "Cache.orgpartition.method.getname()", "nodeType": "method", "name": "getName", "startToken": { "type": "declaration.entity.name.function", "text": "getName", "textToLower": "getname", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getName_-1:0" }, "parentId": "Cache.orgpartition", "order": 11, "memberOrder": 11, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public String getName()", "overrideSignature": "public override String getName()", "simplifiedSignature": "getName()", "datatype": { "id": "Cache.orgpartition.getname.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:7" }, "parentId": "Cache.orgpartition.getname", "order": 0, "memberOrder": 0, "type": "String" }, "description": "Returns the name of this cache partition.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getnumkeys()": { "id": "Cache.orgpartition.method.getnumkeys()", "nodeType": "method", "name": "getNumKeys", "startToken": { "type": "declaration.entity.name.function", "text": "getNumKeys", "textToLower": "getnumkeys", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_getNumKeys_-1:0" }, "parentId": "Cache.orgpartition", "order": 12, "memberOrder": 12, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Long getNumKeys()", "overrideSignature": "public override Long getNumKeys()", "simplifiedSignature": "getNumKeys()", "datatype": { "id": "Cache.orgpartition.getnumkeys.datatype.Long", "nodeType": "datatype", "name": "Long", "startToken": { "type": "datatype.primitive", "text": "Long", "textToLower": "long", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 11 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Long_0:7" }, "parentId": "Cache.orgpartition.getnumkeys", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the total number of keys in the partition.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "isavailable()": { "id": "Cache.orgpartition.method.isavailable()", "nodeType": "method", "name": "isAvailable", "startToken": { "type": "declaration.entity.name.function", "text": "isAvailable", "textToLower": "isavailable", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_isAvailable_-1:0" }, "parentId": "Cache.orgpartition", "order": 13, "memberOrder": 13, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public Boolean isAvailable()", "overrideSignature": "public override Boolean isAvailable()", "simplifiedSignature": "isAvailable()", "datatype": { "id": "Cache.orgpartition.isavailable.datatype.Boolean", "nodeType": "datatype", "name": "Boolean", "startToken": { "type": "datatype.primitive", "text": "Boolean", "textToLower": "boolean", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 14 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Boolean_0:7" }, "parentId": "Cache.orgpartition.isavailable", "order": 0, "memberOrder": 0, "type": "Boolean" }, "description": "Returns true if the Salesforce session is available. Only applies to Cache.SessionPartition. The session cache isn’t available when an active session isn’t present, such as in asynchronous Apex or code called by asynchronous Apex. For example, if batch Apex causes an Apex trigger to execute, the session cache isn’t available in the trigger because the trigger runs in asynchronous context.", "parentName": "OrgPartition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "put(string,object)": { "id": "Cache.orgpartition.method.put(string,object)", "nodeType": "method", "name": "put", "startToken": { "type": "declaration.entity.name.function", "text": "put", "textToLower": "put", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_put_-1:0" }, "parentId": "Cache.orgpartition", "order": 14, "memberOrder": 14, "accessModifier": { "type": "keyword.modifier.access", "text": "public", "textToLower": "public", "isAux": false, "range": { "start": { "line": 0, "character": 0 }, "end": { "line": 0, "character": 6 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_public_0:0" }, "signature": "public void put(String key, Object value)", "overrideSignature": "public override void put(String key, Object value)", "simplifiedSignature": "put(String,Object)", "datatype": { "id": "Cache.orgpartition.put.datatype.void", "nodeType": "datatype", "name": "void", "startToken": { "type": "datatype.primitive", "text": "void", "textToLower": "void", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 11 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_void_0:7" }, "parentId": "Cache.orgpartition.put", "order": 0, "memberOrder": 0, "type": "void" }, "description": "Stores the specified key/value pair as a cached entry in the cache partition. The put method can write only to the cache in your org’s namespace.", "parentName": "OrgPartition", "variables": {}, "params": { "key": { "id": "Cache.orgpartition.method.put(string,object).varParam.key", "nodeType": "variable", "name": "key", "startToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 23 }, "end": { "line": 0, "character": 26 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:23" }, "endToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 23 }, "end": { "line": 0, "character": 26 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:23" }, "parentId": "Cache.orgpartition.method.put(string,object)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.orgpartition.put.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 16 }, "end": { "line": 0, "character": 22 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:16" }, "parentId": "Cache.orgpartition.put", "order": 0, "memberOrder": 0, "type": "String" }, "scope": null }, "value": { "id": "Cache.orgpartition.method.put(string,object).varParam.value", "nodeType": "variable", "name": "value", "startToken": { "type": "declaration.entity.name.variable", "text": "value", "textToLower": "value", "isAux": false, "range": { "start": { "line": 0, "character": 35 }, "end": { "line": 0, "character": 40 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_value_0:35" }, "endToken": { "type": "declaration.entity.name.variable", "text": "value", "textToLower": "value", "isAux": false, "range": { "start": { "line": 0, "character": 35 }, "end": { "line": 0, "character": 40 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_value_0:35" }, "parentId": "Cache.orgpartition.method.put(string,object)", "order": 2, "memberOrder": 2, "datatype": { "id": "Cache.orgpartition.put.datatype.Object", "nodeType": "datatype", "name": "Object", "startToken": { "type": "datatype.primitive", "text": "Object", "textToLower": "object", "isAux": false, "range": { "start": { "line": 0, "character": 28 }, "end": { "line": 0, "character": 34 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_Object_0:28" }, "parentId": "Cache.orgpartition.put", "order": 0, "memberOrder": 0, "type": "Object" }, "description": "A case-sensitive string value that uniquely identifies a cached value. The value to store in the cache. The cached va