Enum CqlTranslationProvider.Option
- java.lang.Object
-
- java.lang.Enum<CqlTranslationProvider.Option>
-
- org.linuxforhealth.fhir.cql.translator.CqlTranslationProvider.Option
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CqlTranslationProvider.Option>
- Enclosing interface:
- CqlTranslationProvider
public static enum CqlTranslationProvider.Option extends java.lang.Enum<CqlTranslationProvider.Option>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CqlTranslationProvider.Option
valueOf(java.lang.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
-
EnableDateRangeOptimization
public static final CqlTranslationProvider.Option EnableDateRangeOptimization
-
EnableAnnotations
public static final CqlTranslationProvider.Option EnableAnnotations
-
EnableLocators
public static final CqlTranslationProvider.Option EnableLocators
-
EnableResultTypes
public static final CqlTranslationProvider.Option EnableResultTypes
-
EnableDetailedErrors
public static final CqlTranslationProvider.Option EnableDetailedErrors
-
DisableListTraversal
public static final CqlTranslationProvider.Option DisableListTraversal
-
DisableListDemotion
public static final CqlTranslationProvider.Option DisableListDemotion
-
DisableListPromotion
public static final CqlTranslationProvider.Option DisableListPromotion
-
EnableIntervalDemotion
public static final CqlTranslationProvider.Option EnableIntervalDemotion
-
EnableIntervalPromotion
public static final CqlTranslationProvider.Option EnableIntervalPromotion
-
DisableMethodInvocation
public static final CqlTranslationProvider.Option DisableMethodInvocation
-
RequireFromKeyword
public static final CqlTranslationProvider.Option RequireFromKeyword
-
-
Method Detail
-
values
public 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
-
valueOf
public static CqlTranslationProvider.Option valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-