Class DefaultQuerySettings
- java.lang.Object
-
- org.apache.qpid.server.query.engine.evaluator.settings.DefaultQuerySettings
-
public class DefaultQuerySettings extends Object
Contains default settings for query execution
-
-
Field Summary
Fields Modifier and Type Field Description static StringDATE_PATTERNPattern for date string representationstatic DateFormatDATE_TIME_FORMATFormat of date/time representationstatic StringDATE_TIME_PATTERNPattern for date/time string representationstatic intDECIMAL_DIGITSAmount of decimal digits after the pointstatic BigDecimalMAX_BIG_DECIMAL_VALUEMaximal allowed BigDecimal value.static intMAX_QUERY_CACHE_SIZEMaximal amount of queries allowed cachingstatic intMAX_QUERY_DEPTHMaximal amount of query tree nodes allowedstatic RoundingModeROUNDING_MODERounding mode used in calculationsstatic StringZONE_IDZoneId used in date/time representation
-
Constructor Summary
Constructors Constructor Description DefaultQuerySettings()
-
-
-
Field Detail
-
DATE_TIME_FORMAT
public static DateFormat DATE_TIME_FORMAT
Format of date/time representation
-
DATE_PATTERN
public static String DATE_PATTERN
Pattern for date string representation
-
DATE_TIME_PATTERN
public static String DATE_TIME_PATTERN
Pattern for date/time string representation
-
DECIMAL_DIGITS
public static int DECIMAL_DIGITS
Amount of decimal digits after the point
-
MAX_BIG_DECIMAL_VALUE
public static BigDecimal MAX_BIG_DECIMAL_VALUE
Maximal allowed BigDecimal value. It is needed to prevent heap memory consumption when calculating very large numbers.
-
MAX_QUERY_CACHE_SIZE
public static int MAX_QUERY_CACHE_SIZE
Maximal amount of queries allowed caching
-
MAX_QUERY_DEPTH
public static int MAX_QUERY_DEPTH
Maximal amount of query tree nodes allowed
-
ROUNDING_MODE
public static RoundingMode ROUNDING_MODE
Rounding mode used in calculations
-
ZONE_ID
public static String ZONE_ID
ZoneId used in date/time representation
-
-