UNPKG

@aurahelper/languages

Version:

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

1,675 lines 152 kB
{ "id": "Cache.partition", "nodeType": "class", "name": "Partition", "namespace": "Cache", "startToken": { "type": "declaration.entity.name.class", "text": "Partition", "textToLower": "partition", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.class_Partition_-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": "Base class of Cache.OrgPartition and Cache.SessionPartition. Use the subclasses to manage the cache partition for org caches and session caches.", "documentation": "https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_class_cache_Partition.htm", "classes": {}, "interfaces": {}, "enums": {}, "variables": {}, "methods": { "contains(string)": { "id": "Cache.partition.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.partition", "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.partition.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.partition.contains", "order": 0, "memberOrder": 0, "type": "Boolean" }, "description": "Returns true if the cache partition contains a cached value corresponding to the specified key.", "parentName": "Partition", "variables": {}, "params": { "key": { "id": "Cache.partition.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.partition.method.contains(string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.partition.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.partition.contains", "order": 0, "memberOrder": 0, "type": "String" }, "description": "A case-sensitive string value that uniquely identifies a cached value.", "scope": null } }, "queries": [], "exceptions": [] }, "createfullyqualifiedkey(string,string,string)": { "id": "Cache.partition.method.createfullyqualifiedkey(string,string,string)", "nodeType": "method", "name": "createFullyQualifiedKey", "startToken": { "type": "declaration.entity.name.function", "text": "createFullyQualifiedKey", "textToLower": "createfullyqualifiedkey", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_createFullyQualifiedKey_-1:0" }, "parentId": "Cache.partition", "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" }, "static": { "type": "keyword.modifier.static", "text": "static", "textToLower": "static", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_static_0:7" }, "signature": "public static String createFullyQualifiedKey(String namespace, String partition, String key)", "overrideSignature": "public static override String createFullyQualifiedKey(String namespace, String partition, String key)", "simplifiedSignature": "createFullyQualifiedKey(String,String,String)", "datatype": { "id": "Cache.partition.createfullyqualifiedkey.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 14 }, "end": { "line": 0, "character": 20 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:14" }, "parentId": "Cache.partition.createfullyqualifiedkey", "order": 0, "memberOrder": 0, "type": "String" }, "description": "Generates a fully qualified key from the passed-in key components. The format of the generated key string is namespace.partition.key.", "parentName": "Partition", "variables": {}, "params": { "namespace": { "id": "Cache.partition.method.createfullyqualifiedkey(string,string,string).varParam.namespace", "nodeType": "variable", "name": "namespace", "startToken": { "type": "declaration.entity.name.variable", "text": "namespace", "textToLower": "namespace", "isAux": false, "range": { "start": { "line": 0, "character": 52 }, "end": { "line": 0, "character": 61 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_namespace_0:52" }, "endToken": { "type": "declaration.entity.name.variable", "text": "namespace", "textToLower": "namespace", "isAux": false, "range": { "start": { "line": 0, "character": 52 }, "end": { "line": 0, "character": 61 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_namespace_0:52" }, "parentId": "Cache.partition.method.createfullyqualifiedkey(string,string,string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.partition.createfullyqualifiedkey.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 45 }, "end": { "line": 0, "character": 51 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:45" }, "parentId": "Cache.partition.createfullyqualifiedkey", "order": 0, "memberOrder": 0, "type": "String" }, "scope": null }, "partition": { "id": "Cache.partition.method.createfullyqualifiedkey(string,string,string).varParam.partition", "nodeType": "variable", "name": "partition", "startToken": { "type": "declaration.entity.name.variable", "text": "partition", "textToLower": "partition", "isAux": false, "range": { "start": { "line": 0, "character": 70 }, "end": { "line": 0, "character": 79 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_partition_0:70" }, "endToken": { "type": "declaration.entity.name.variable", "text": "partition", "textToLower": "partition", "isAux": false, "range": { "start": { "line": 0, "character": 70 }, "end": { "line": 0, "character": 79 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_partition_0:70" }, "parentId": "Cache.partition.method.createfullyqualifiedkey(string,string,string)", "order": 2, "memberOrder": 2, "datatype": { "id": "Cache.partition.createfullyqualifiedkey.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 63 }, "end": { "line": 0, "character": 69 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:63" }, "parentId": "Cache.partition.createfullyqualifiedkey", "order": 0, "memberOrder": 0, "type": "String" }, "scope": null }, "key": { "id": "Cache.partition.method.createfullyqualifiedkey(string,string,string).varParam.key", "nodeType": "variable", "name": "key", "startToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 88 }, "end": { "line": 0, "character": 91 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:88" }, "endToken": { "type": "declaration.entity.name.variable", "text": "key", "textToLower": "key", "isAux": false, "range": { "start": { "line": 0, "character": 88 }, "end": { "line": 0, "character": 91 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_key_0:88" }, "parentId": "Cache.partition.method.createfullyqualifiedkey(string,string,string)", "order": 3, "memberOrder": 3, "datatype": { "id": "Cache.partition.createfullyqualifiedkey.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 81 }, "end": { "line": 0, "character": 87 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:81" }, "parentId": "Cache.partition.createfullyqualifiedkey", "order": 0, "memberOrder": 0, "type": "String" }, "description": "The namespace of the cache key. The partition of the cache key. The name of the cache key.", "scope": null } }, "queries": [], "exceptions": [] }, "createfullyqualifiedpartition(string,string)": { "id": "Cache.partition.method.createfullyqualifiedpartition(string,string)", "nodeType": "method", "name": "createFullyQualifiedPartition", "startToken": { "type": "declaration.entity.name.function", "text": "createFullyQualifiedPartition", "textToLower": "createfullyqualifiedpartition", "isAux": false, "range": { "start": { "line": -1, "character": 0 }, "end": { "line": -1, "character": 0 }, "isEmpty": true, "isSingleLine": true }, "id": "declaration.entity.name.function_createFullyQualifiedPartition_-1:0" }, "parentId": "Cache.partition", "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" }, "static": { "type": "keyword.modifier.static", "text": "static", "textToLower": "static", "isAux": false, "range": { "start": { "line": 0, "character": 7 }, "end": { "line": 0, "character": 13 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_static_0:7" }, "signature": "public static String createFullyQualifiedPartition(String namespace, String partition)", "overrideSignature": "public static override String createFullyQualifiedPartition(String namespace, String partition)", "simplifiedSignature": "createFullyQualifiedPartition(String,String)", "datatype": { "id": "Cache.partition.createfullyqualifiedpartition.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 14 }, "end": { "line": 0, "character": 20 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:14" }, "parentId": "Cache.partition.createfullyqualifiedpartition", "order": 0, "memberOrder": 0, "type": "String" }, "description": "Generates a fully qualified partition name from the passed-in namespace and partition. The format of the generated partition string is namespace.partition.", "parentName": "Partition", "variables": {}, "params": { "namespace": { "id": "Cache.partition.method.createfullyqualifiedpartition(string,string).varParam.namespace", "nodeType": "variable", "name": "namespace", "startToken": { "type": "declaration.entity.name.variable", "text": "namespace", "textToLower": "namespace", "isAux": false, "range": { "start": { "line": 0, "character": 58 }, "end": { "line": 0, "character": 67 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_namespace_0:58" }, "endToken": { "type": "declaration.entity.name.variable", "text": "namespace", "textToLower": "namespace", "isAux": false, "range": { "start": { "line": 0, "character": 58 }, "end": { "line": 0, "character": 67 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_namespace_0:58" }, "parentId": "Cache.partition.method.createfullyqualifiedpartition(string,string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.partition.createfullyqualifiedpartition.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 51 }, "end": { "line": 0, "character": 57 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:51" }, "parentId": "Cache.partition.createfullyqualifiedpartition", "order": 0, "memberOrder": 0, "type": "String" }, "scope": null }, "partition": { "id": "Cache.partition.method.createfullyqualifiedpartition(string,string).varParam.partition", "nodeType": "variable", "name": "partition", "startToken": { "type": "declaration.entity.name.variable", "text": "partition", "textToLower": "partition", "isAux": false, "range": { "start": { "line": 0, "character": 76 }, "end": { "line": 0, "character": 85 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_partition_0:76" }, "endToken": { "type": "declaration.entity.name.variable", "text": "partition", "textToLower": "partition", "isAux": false, "range": { "start": { "line": 0, "character": 76 }, "end": { "line": 0, "character": 85 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_partition_0:76" }, "parentId": "Cache.partition.method.createfullyqualifiedpartition(string,string)", "order": 2, "memberOrder": 2, "datatype": { "id": "Cache.partition.createfullyqualifiedpartition.datatype.String", "nodeType": "datatype", "name": "String", "startToken": { "type": "datatype.primitive", "text": "String", "textToLower": "string", "isAux": false, "range": { "start": { "line": 0, "character": 69 }, "end": { "line": 0, "character": 75 }, "isEmpty": false, "isSingleLine": true }, "id": "token.type.identifier_String_0:69" }, "parentId": "Cache.partition.createfullyqualifiedpartition", "order": 0, "memberOrder": 0, "type": "String" }, "description": "The namespace of the cache key. The partition of the cache key.", "scope": null } }, "queries": [], "exceptions": [] }, "get(string)": { "id": "Cache.partition.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.partition", "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 Object get(String key)", "overrideSignature": "public override Object get(String key)", "simplifiedSignature": "get(String)", "datatype": { "id": "Cache.partition.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.partition.get", "order": 0, "memberOrder": 0, "type": "Object" }, "description": "Returns the cached value corresponding to the specified key from the cache partition.", "parentName": "Partition", "variables": {}, "params": { "key": { "id": "Cache.partition.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.partition.method.get(string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.partition.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.partition.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.partition.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.partition", "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 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.partition.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.partition.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": "Partition", "variables": {}, "params": { "cachebuilder": { "id": "Cache.partition.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.partition.method.get(system.type,string)", "order": 1, "memberOrder": 1, "datatype": { "id": "Cache.partition.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.partition.get", "order": 0, "memberOrder": 0, "type": "System.Type" }, "scope": null }, "key": { "id": "Cache.partition.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.partition.method.get(system.type,string)", "order": 2, "memberOrder": 2, "datatype": { "id": "Cache.partition.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.partition.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.partition.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.partition", "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 Long getAvgGetTime()", "overrideSignature": "public override Long getAvgGetTime()", "simplifiedSignature": "getAvgGetTime()", "datatype": { "id": "Cache.partition.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.partition.getavggettime", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the average time taken to get a key from the partition, in nanoseconds.", "parentName": "Partition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getavgvaluesize()": { "id": "Cache.partition.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.partition", "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 Long getAvgValueSize()", "overrideSignature": "public override Long getAvgValueSize()", "simplifiedSignature": "getAvgValueSize()", "datatype": { "id": "Cache.partition.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.partition.getavgvaluesize", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the average item size for keys in the partition, in bytes.", "parentName": "Partition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getcapacity()": { "id": "Cache.partition.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.partition", "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 Double getCapacity()", "overrideSignature": "public override Double getCapacity()", "simplifiedSignature": "getCapacity()", "datatype": { "id": "Cache.partition.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.partition.getcapacity", "order": 0, "memberOrder": 0, "type": "Double" }, "description": "Returns the percentage of cache used of the total capacity for this partition.", "parentName": "Partition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getkeys()": { "id": "Cache.partition.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.partition", "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 Set<String> getKeys()", "overrideSignature": "public override Set<String> getKeys()", "simplifiedSignature": "getKeys()", "datatype": { "id": "Cache.partition.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.partition.getkeys", "order": 0, "memberOrder": 0, "type": "Set", "value": { "id": "Cache.partition.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": "Partition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getmaxgettime()": { "id": "Cache.partition.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.partition", "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 Long getMaxGetTime()", "overrideSignature": "public override Long getMaxGetTime()", "simplifiedSignature": "getMaxGetTime()", "datatype": { "id": "Cache.partition.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.partition.getmaxgettime", "order": 0, "memberOrder": 0, "type": "Long" }, "description": "Returns the maximum time taken to get a key from the partition, in nanoseconds.", "parentName": "Partition", "variables": {}, "params": {}, "queries": [], "exceptions": [] }, "getmaxvaluesize()": { "id": "Cache.partition.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":