SLDBinaryOperatorExpression

Objective-C

@interface SLDBinaryOperatorExpression : SLDExpression

Swift

class SLDBinaryOperatorExpression : SLDExpression

@brief Class corresponding to the ogc:BinaryOperatorType elements

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString * _Nonnull elementName

    Swift

    var elementName: String { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) SLDExpression * _Nonnull leftExpression

    Swift

    var leftExpression: SLDExpression { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) SLDExpression * _Nonnull rightExpression

    Swift

    var rightExpression: SLDExpression { get set }
  • Undocumented

    Declaration

    Objective-C

    - (_Nullable id)initWithElement:(DDXMLElement * _Nonnull)element;

    Swift

    init?(element: DDXMLElement)