public static enum CostEstimatorFactory.CostType extends Enum<CostEstimatorFactory.CostType>
| Enum Constant and Description | 
|---|
| AUTO | 
| DECOMPRESSION | 
| DISTINCT | 
| HYBRID_W_TREE | 
| LEFT_MATRIX_MULT | 
| MEMORY | 
| TSMM | 
| W_TREE | 
| Modifier and Type | Method and Description | 
|---|---|
| static CostEstimatorFactory.CostType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CostEstimatorFactory.CostType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CostEstimatorFactory.CostType MEMORY
public static final CostEstimatorFactory.CostType LEFT_MATRIX_MULT
public static final CostEstimatorFactory.CostType DECOMPRESSION
public static final CostEstimatorFactory.CostType TSMM
public static final CostEstimatorFactory.CostType W_TREE
public static final CostEstimatorFactory.CostType HYBRID_W_TREE
public static final CostEstimatorFactory.CostType DISTINCT
public static final CostEstimatorFactory.CostType AUTO
public static CostEstimatorFactory.CostType[] values()
for (CostEstimatorFactory.CostType c : CostEstimatorFactory.CostType.values()) System.out.println(c);
public static CostEstimatorFactory.CostType 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 nullCopyright © 2021 The Apache Software Foundation. All rights reserved.