public enum EstimateEnum extends Enum<EstimateEnum>
Enum Constant and Description |
---|
Exact
The cardinality estimate is exact.
|
LowerBound
The cardinality estimation is a lower bound (the actual cardinality may
be higher than the estimated value).
|
Normal
An estimate, but not any of the edge conditions.
|
Underflow
Flag is set when the cardinality estimate underflowed (false zero (0)).
|
Modifier and Type | Method and Description |
---|---|
String |
getCode() |
static EstimateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EstimateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EstimateEnum Normal
public static final EstimateEnum Exact
public static final EstimateEnum LowerBound
Note: The estimated cardinality reported for a LowerBound
is the
sum of the fast range counts for the sampled access paths. See the logic
which handles cutoff join sampling for details on this.
public static final EstimateEnum Underflow
public static EstimateEnum[] values()
for (EstimateEnum c : EstimateEnum.values()) System.out.println(c);
public static EstimateEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getCode()
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.