Class DefaultQuerySettings
- java.lang.Object
-
- org.apache.qpid.server.query.engine.evaluator.settings.DefaultQuerySettings
-
public class DefaultQuerySettings extends java.lang.ObjectContains default settings for query execution
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDATE_PATTERNPattern for date string representationstatic DateFormatDATE_TIME_FORMATFormat of date/time representationstatic java.lang.StringDATE_TIME_PATTERNPattern for date/time string representationstatic intDECIMAL_DIGITSAmount of decimal digits after the pointstatic java.math.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 java.math.RoundingModeROUNDING_MODERounding mode used in calculationsstatic java.lang.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 java.lang.String DATE_PATTERN
Pattern for date string representation
-
DATE_TIME_PATTERN
public static java.lang.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 java.math.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 java.math.RoundingMode ROUNDING_MODE
Rounding mode used in calculations
-
ZONE_ID
public static java.lang.String ZONE_ID
ZoneId used in date/time representation
-
-