public enum TableExpressionNormalization extends Enum<TableExpressionNormalization>
| Enum Constant and Description | 
|---|
NONE
No normalization. 
 | 
NORMALIZE
Normalize, but do not adjust any zero sum configurations. 
 | 
NORMALIZE_UNIFY_ZERO_SUM
Normalize, and set any zero sum configurations to a uniform distribution. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TableExpressionNormalization | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TableExpressionNormalization[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TableExpressionNormalization NONE
public static final TableExpressionNormalization NORMALIZE
public static final TableExpressionNormalization NORMALIZE_UNIFY_ZERO_SUM
public static TableExpressionNormalization[] values()
for (TableExpressionNormalization c : TableExpressionNormalization.values()) System.out.println(c);
public static TableExpressionNormalization 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. All rights reserved.