LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
global class ReportFilter {
    global ReportFilter(String column, String operator, String value, reports.ReportFilterType filterType) { }
    global ReportFilter(String column, String operator, String value) { }
    global ReportFilter() { }
    global Object clone() { }
    global String getColumn() { }
    global reports.ReportFilterType getFilterType() { }
    global String getOperator() { }
    global String getValue() { }
    global void setColumn(String column) { }
    global void setFilterType(String value) { }
    global void setFilterType(reports.ReportFilterType filterType) { }
    global void setOperator(String operator) { }
    global void setValue(String value) { }
    global String toString() { }
 
}