Package com.ibm.fhir.cql.translator
Enum CqlTranslationProvider.Option
- java.lang.Object
- 
- java.lang.Enum<CqlTranslationProvider.Option>
- 
- com.ibm.fhir.cql.translator.CqlTranslationProvider.Option
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CqlTranslationProvider.Option>
 - Enclosing interface:
- CqlTranslationProvider
 
 public static enum CqlTranslationProvider.Option extends Enum<CqlTranslationProvider.Option> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CqlTranslationProvider.OptionvalueOf(String name)Returns the enum constant of this type with the specified name.static CqlTranslationProvider.Option[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EnableDateRangeOptimizationpublic static final CqlTranslationProvider.Option EnableDateRangeOptimization 
 - 
EnableAnnotationspublic static final CqlTranslationProvider.Option EnableAnnotations 
 - 
EnableLocatorspublic static final CqlTranslationProvider.Option EnableLocators 
 - 
EnableResultTypespublic static final CqlTranslationProvider.Option EnableResultTypes 
 - 
EnableDetailedErrorspublic static final CqlTranslationProvider.Option EnableDetailedErrors 
 - 
DisableListTraversalpublic static final CqlTranslationProvider.Option DisableListTraversal 
 - 
DisableListDemotionpublic static final CqlTranslationProvider.Option DisableListDemotion 
 - 
DisableListPromotionpublic static final CqlTranslationProvider.Option DisableListPromotion 
 - 
EnableIntervalDemotionpublic static final CqlTranslationProvider.Option EnableIntervalDemotion 
 - 
EnableIntervalPromotionpublic static final CqlTranslationProvider.Option EnableIntervalPromotion 
 - 
DisableMethodInvocationpublic static final CqlTranslationProvider.Option DisableMethodInvocation 
 - 
RequireFromKeywordpublic static final CqlTranslationProvider.Option RequireFromKeyword 
 
- 
 - 
Method Detail- 
valuespublic static CqlTranslationProvider.Option[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CqlTranslationProvider.Option c : CqlTranslationProvider.Option.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CqlTranslationProvider.Option valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-