LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
global class DescribeFieldResult {
    global Boolean accessible;
    global Boolean aggregatable;
    global Boolean aipredictionfield;
    global Boolean autonumber;
    global Integer bytelength;
    global Boolean calculated;
    global String calculatedformula;
    global Boolean cascadedelete;
    global Boolean casesensitive;
    global String compoundfieldname;
    global Schema.SObjectField controller;
    global Boolean createable;
    global Boolean custom;
    global Boolean datatranslationenabled;
    global Boolean defaultedoncreate;
    global Object defaultvalue;
    global String defaultvalueformula;
    global Boolean dependentpicklist;
    global Boolean deprecatedandhidden;
    global Integer digits;
    global Boolean displaylocationindecimal;
    global Boolean encrypted;
    global Boolean externalid;
    global Boolean filterable;
    global Schema.FilteredLookupInfo filteredlookupinfo;
    global Boolean formulatreatnullnumberaszero;
    global Boolean groupable;
    global Boolean highscalenumber;
    global Boolean htmlformatted;
    global Boolean idlookup;
    global String inlinehelptext;
    global String label;
    global Integer length;
    global String localname;
    global String mask;
    global String masktype;
    global String name;
    global Boolean namefield;
    global Boolean namepointing;
    global Boolean nillable;
    global Boolean permissionable;
    global List<Schema.PicklistEntry> picklistvalues;
    global Integer precision;
    global Boolean querybydistance;
    global String referencetargetfield;
    global List<Schema.SObjectType> referenceto;
    global String relationshipname;
    global Integer relationshiporder;
    global Boolean restricteddelete;
    global Boolean restrictedpicklist;
    global Integer scale;
    global Boolean searchprefilterable;
    global Schema.SoapType soaptype;
    global Schema.SObjectField sobjectfield;
    global Schema.SObjectType sobjecttype;
    global Boolean sortable;
    global Schema.DisplayType type;
    global Boolean unique;
    global Boolean updateable;
    global Boolean writerequiresmasterread;
    global Integer getByteLength() { }
    global String getCalculatedFormula() { }
    global String getCompoundFieldName() { }
    global Schema.SObjectField getController() { }
    global Boolean getDataTranslationEnabled() { }
    global Object getDefaultValue() { }
    global String getDefaultValueFormula() { }
    global Integer getDigits() { }
    global Schema.FilteredLookupInfo getFilteredLookupInfo() { }
    global String getInlineHelpText() { }
    global String getLabel() { }
    global Integer getLength() { }
    global String getLocalName() { }
    global String getMask() { }
    global String getMaskType() { }
    global String getName() { }
    global List<Schema.PicklistEntry> getPicklistValues() { }
    global Integer getPrecision() { }
    global String getReferenceTargetField() { }
    global List<Schema.SObjectType> getReferenceTo() { }
    global String getRelationshipName() { }
    global Integer getRelationshipOrder() { }
    global Schema.SObjectType getSObjectType() { }
    global Integer getScale() { }
    global Schema.SoapType getSoapType() { }
    global Schema.SObjectField getSobjectField() { }
    global Schema.DisplayType getType() { }
    global Boolean isAccessible() { }
    global Boolean isAggregatable() { }
    global Boolean isAiPredictionField() { }
    global Boolean isAutoNumber() { }
    global Boolean isCalculated() { }
    global Boolean isCascadeDelete() { }
    global Boolean isCaseSensitive() { }
    global Boolean isCreateable() { }
    global Boolean isCustom() { }
    global Boolean isDefaultedOnCreate() { }
    global Boolean isDependentPicklist() { }
    global Boolean isDeprecatedAndHidden() { }
    global Boolean isDisplayLocationInDecimal() { }
    global Boolean isEncrypted() { }
    global Boolean isExternalId() { }
    global Boolean isFilterable() { }
    global Boolean isFormulaTreatNullNumberAsZero() { }
    global Boolean isGroupable() { }
    global Boolean isHighScaleNumber() { }
    global Boolean isHtmlFormatted() { }
    global Boolean isIdLookup() { }
    global Boolean isNameField() { }
    global Boolean isNamePointing() { }
    global Boolean isNillable() { }
    global Boolean isPermissionable() { }
    global Boolean isQueryByDistance() { }
    global Boolean isRestrictedDelete() { }
    global Boolean isRestrictedPicklist() { }
    global Boolean isSearchPrefilterable() { }
    global Boolean isSortable() { }
    global Boolean isUnique() { }
    global Boolean isUpdateable() { }
    global Boolean isWriteRequiresMasterRead() { }
 
}