@aurahelper/languages
Version:
Language Libraries to work with XML, Aura, Apex... files. tokenizers, parsers, system classes and much more
86 lines • 2.86 kB
JSON
{
"id": "Cache.cachebuilder",
"nodeType": "class",
"name": "interface",
"namespace": "Cache",
"startToken": "CacheBuilder",
"accessModifier": {
"type": "keyword.modifier.access",
"text": "global",
"textToLower": "global",
"isAux": false,
"range": {},
"id": "keyword.modifier.access_global"
},
"sharingModifier": {
"type": "keyword.modifier.sharing",
"text": "without sharing",
"textToLower": "without sharing",
"isAux": false,
"range": {},
"id": "keyword.modifier.sharing_without sharing"
},
"description": "An interface for safely retrieving and removing values from a session or org cache. Use the interface to generate a value that you want to store in the cache. The interface checks for cache misses, which means you no longer need to check for null cache values yourself.",
"documentation": "https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_interface_cache_CacheBuilder.htm",
"classes": {},
"interfaces": {},
"enums": {},
"methods": {
"doload(string)": {
"id": "Cache.cachebuilder.doload",
"nodeType": "method",
"name": "doLoad",
"startToken": {
"type": "declaration.entity.name.function",
"text": "doLoad",
"textToLower": "doload",
"isAux": false,
"range": {},
"id": "declaration.entity.name.function_doLoad"
},
"accessModifier": {
"type": "keyword.modifier.access",
"text": "public",
"textToLower": "public",
"isAux": false,
"range": {},
"id": "keyword.modifier.access_public"
},
"signature": "public Object doLoad(String var)",
"simplifiedSignature": "doLoad(String)",
"datatype": {
"id": "Cache.cachebuilder.doload.Object",
"nodeType": "datatype",
"name": "Object",
"type": "Object"
},
"description": "Contains the logic that builds a cached value. You don’t call this method directly. Instead, it’s called indirectly when you reference the class that implements the CacheBuilder interface.",
"params": {
"var": {
"id": "Cache.cachebuilder.doload.var",
"type": "var",
"name": "var",
"startToken": {
"type": "declaration.entity.name.variable",
"text": "var",
"textToLower": "var",
"isAux": false,
"range": {},
"id": "declaration.entity.name.variable_var"
},
"signature": "String var",
"datatype": {
"id": "Cache.cachebuilder.doload.string",
"nodeType": "datatype",
"name": "String",
"type": "String"
}
}
}
}
},
"constructors": {},
"extendsType": "",
"implementTypes": [],
"implements": {}
}