How to run multiple feature files in a specific sequence ?

I have feature file names as ‘PolicyCreation.feature’, ‘AccountDetails.feature’, ‘PaymentProcessing.feature’, ‘Disbursement.feature’. I want run all files in sequence as they are written.

@RunWith(Cucumber.class)
@CucumberOptions(features=[
“Include/features/Cerity/PolicyCreation.feature”,
“Include/features/Cerity/API Feature file/AccountDetails.feature”,
“Include/features/Cerity/API Feature file/PaymentProcessing.feature”,
“Include/features/Cerity/API Feature file/Disbursement.feature”
],glue=“”,plugin=[“pretty”,“html:ReportsFolder”,“json:ReportsFolder/cucumber.json”])
class APiCucumberRunner {
}