Combining IOSclasschain Locators issue

Hi All,
I want to convert this xpath format to iosclasschain

Xpath:://XCUIElementTypeButton[@name=“Find” or @name=“Home” or @name=“back”][@focused=‘true’] | //XCUIElementTypeStaticText[@name=“switch profile”]

I was able to convert the first half (XCUIElementTypeButton locator) to classchain format…
iOSClassChain::**/XCUIElementTypeButton[name MATCHES "Home|Find|back" AND focused==1]

But am not able to combine the second half (XCUIElementTypeStaticText[@name=“switch profile”])
To the above created ios class chain locator…

Is there any way to combine both XCUIElementTypeButton and XCUIElementTypeStaticText locators as a single iosclasschainlocator like xpath?

I can only imagine

**/*[`type IN {'XCUIElementTypeButton', 'XCUIElementTypeStaticText'} AND name IN {'Home', 'Find', 'back', 'switch profile'}`]

Otherwise it would need to apply two locators

If you are with Java try use Appium annotations. They combine all possible values you can imagine.
Mine real example

    @HowToUseLocators(iOSXCUITAutomation = LocatorGroupStrategy.ALL_POSSIBLE, androidAutomation = LocatorGroupStrategy.ALL_POSSIBLE)
    @iOSXCUITFindAll(value = {
            @iOSXCUITBy(iOSNsPredicate = "name == 'closeBarButton' AND visible == 1"),
            @iOSXCUITBy(iOSNsPredicate = "name == 'backBarButton' AND visible == 1"),
            @iOSXCUITBy(iOSNsPredicate = "name == 'Back' OR label == 'Back' AND visible == 1")
    })
    @iOSXCUITFindBys(value = {
            @iOSXCUITBy(iOSNsPredicate = "type == 'XCUIElementTypeNavigationBar' AND visible == 1"),
            @iOSXCUITBy(iOSNsPredicate = "type == 'XCUIElementTypeButton' AND visible == 1")
    })
    @AndroidFindAll(value = {
            @AndroidBy(accessibility = "Navigate up"),
            @AndroidBy(uiAutomator = "new UiSelector().resourceId(\"appbar.navigation\")"), // recurrent details
            // back
            @AndroidBy(id = "iv_back"),
            // close
            @AndroidBy(id = "iv_close"),
            @AndroidBy(id = "iv_close_dialog"),
            @AndroidBy(id = "close_button_cross"),
            @AndroidBy(id = "iv_base_bottom_sheet_close") // Bottom Sheet close
    })
    @AndroidFindBys(value = {
            @AndroidBy(uiAutomator = "new UiSelector().resourceIdMatches(\".*toolbar.*\")"),
            @AndroidBy(className = "android.widget.ImageButton") // shitty android locator
    })
    @AndroidFindBys(value = { // onboarding
            @AndroidBy(id = "entitlement_container"),
            @AndroidBy(className = "android.widget.ImageButton")
    })
    private WebElement headerCloseOrBackButton;

In the above example the code would still try to go through all enumerated locators until a match is found. This happens implicitly though.