{
  "id": "Cache.cachebuilder",
  "nodeType": "interface",
  "name": "CacheBuilder",
  "namespace": "Cache",
  "startToken": {
    "type": "declaration.entity.name.class",
    "text": "CacheBuilder",
    "textToLower": "cachebuilder",
    "isAux": false,
    "range": {
      "start": {
        "line": -1,
        "character": 0
      },
      "end": {
        "line": -1,
        "character": 0
      },
      "isEmpty": true,
      "isSingleLine": true
    },
    "id": "declaration.entity.name.class_CacheBuilder_-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": "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": {},
  "variables": {},
  "methods": {
    "doload(string)": {
      "id": "Cache.cachebuilder.method.doload(string)",
      "nodeType": "method",
      "name": "doLoad",
      "startToken": {
        "type": "declaration.entity.name.function",
        "text": "doLoad",
        "textToLower": "doload",
        "isAux": false,
        "range": {
          "start": {
            "line": -1,
            "character": 0
          },
          "end": {
            "line": -1,
            "character": 0
          },
          "isEmpty": true,
          "isSingleLine": true
        },
        "id": "declaration.entity.name.function_doLoad_-1:0"
      },
      "parentId": "Cache.cachebuilder",
      "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 Object doLoad(String var)",
      "overrideSignature": "public override Object doLoad(String var)",
      "simplifiedSignature": "doLoad(String)",
      "datatype": {
        "id": "Cache.cachebuilder.doload.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.cachebuilder.doload",
        "order": 0,
        "memberOrder": 0,
        "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.",
      "parentName": "CacheBuilder",
      "variables": {},
      "params": {
        "var": {
          "id": "Cache.cachebuilder.method.doload(string).varParam.var",
          "nodeType": "variable",
          "name": "var",
          "startToken": {
            "type": "declaration.entity.name.variable",
            "text": "var",
            "textToLower": "var",
            "isAux": false,
            "range": {
              "start": {
                "line": 0,
                "character": 28
              },
              "end": {
                "line": 0,
                "character": 31
              },
              "isEmpty": false,
              "isSingleLine": true
            },
            "id": "token.type.identifier_var_0:28"
          },
          "endToken": {
            "type": "declaration.entity.name.variable",
            "text": "var",
            "textToLower": "var",
            "isAux": false,
            "range": {
              "start": {
                "line": 0,
                "character": 28
              },
              "end": {
                "line": 0,
                "character": 31
              },
              "isEmpty": false,
              "isSingleLine": true
            },
            "id": "token.type.identifier_var_0:28"
          },
          "parentId": "Cache.cachebuilder.method.doload(string)",
          "order": 1,
          "memberOrder": 1,
          "datatype": {
            "id": "Cache.cachebuilder.doload.datatype.String",
            "nodeType": "datatype",
            "name": "String",
            "startToken": {
              "type": "datatype.primitive",
              "text": "String",
              "textToLower": "string",
              "isAux": false,
              "range": {
                "start": {
                  "line": 0,
                  "character": 21
                },
                "end": {
                  "line": 0,
                  "character": 27
                },
                "isEmpty": false,
                "isSingleLine": true
              },
              "id": "token.type.identifier_String_0:21"
            },
            "parentId": "Cache.cachebuilder.doload",
            "order": 0,
            "memberOrder": 0,
            "type": "String"
          },
          "description": "A case-sensitive string value used to build a cached value. This parameter is also used as part of the unique key that identifies the cached value.",
          "scope": null
        }
      },
      "queries": [],
      "exceptions": []
    }
  },
  "constructors": {},
  "extendsType": "",
  "implementTypes": [],
  "implements": {},
  "totalMembers": 1,
  "queries": []
}