typedef NS_ENUM()

in Framework/ROADWebService/ROADWebService/OData/RFODataPredicate.h [40:58]


typedef NS_ENUM(NSUInteger, RFODataPredicateOperatorType) {
    RFNotSpecifiedODataPredicateOperatorType,
    // Logical Operators
    RFEqualToODataPredicateOperatorType,
    RFNotEqualToODataPredicateOperatorType,
    RFGreaterThanODataPredicateOperatorType,
    RFGreaterThanOrEqualToODataPredicateOperatorType,
    RFLessThanODataPredicateOperatorType,
    RFLessThanOrEqualToODataPredicateOperatorType,
    RFLogicalAndODataPredicateOperatorType,
    RFLogicalOrODataPredicateOperatorType,
    RFLogicalNegationODataPredicateOperatorType,
    // Arithmetic Operators
    RFAdditionODataPredicateOperatorType,
    RFSubstractionODataPredicateOperatorType,
    RFMultiplicationODataPredicateOperatorType,
    RFDivisionODataPredicateOperatorType,
    RFModuloODataPredicateOperatorType,
};