FWSegmentedControlBorderType

NS_OPTIONS(NSInteger, FWSegmentedControlBorderType) {
    FWSegmentedControlBorderTypeNone = 0,
    FWSegmentedControlBorderTypeTop = (1 << 0),
    FWSegmentedControlBorderTypeLeft = (1 << 1),
    FWSegmentedControlBorderTypeBottom = (1 << 2),
    FWSegmentedControlBorderTypeRight = (1 << 3)
}

Undocumented