Class DevelopmentOptionsUtil
java.lang.Object
com._1c.g5.v8.dt.internal.team.infobases.DevelopmentOptionsUtil
Utility methods to work with development options.
- Restriction:
- This class is not intended to be sub-classed by clients.
- Restriction:
- This class is not intended to be instantiated by clients.
- 
Method SummaryModifier and TypeMethodDescriptionstatic StringrequireOption(DevelopmentOptions options, String option) Require an option from the provided development options.static StringrequireOption(Map<String, String> options, String option) Require an option from the provided development options.
- 
Method Details- 
requireOptionpublic static String requireOption(DevelopmentOptions options, String option) throws DevelopmentProcessException Require an option from the provided development options.- Parameters:
- options- the development options, cannot be- null
- option- an option to get, cannot be- null
- Returns:
- the required option value, never null
- Throws:
- DevelopmentProcessException- if an option for the provided key not found
 
- 
requireOptionpublic static String requireOption(Map<String, String> options, String option) throws DevelopmentProcessExceptionRequire an option from the provided development options.- Parameters:
- options- the development options, cannot be- null
- option- an option to get, cannot be- null
- Returns:
- the required option value, never null
- Throws:
- DevelopmentProcessException- if an option for the provided key not found
 
 
-