public static enum SpoofOuterProduct.OutProdType extends Enum<SpoofOuterProduct.OutProdType>
| Enum Constant and Description | 
|---|
| AGG_OUTER_PRODUCT | 
| CELLWISE_OUTER_PRODUCT | 
| LEFT_OUTER_PRODUCT | 
| RIGHT_OUTER_PRODUCT | 
| Modifier and Type | Method and Description | 
|---|---|
| static SpoofOuterProduct.OutProdType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SpoofOuterProduct.OutProdType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SpoofOuterProduct.OutProdType LEFT_OUTER_PRODUCT
public static final SpoofOuterProduct.OutProdType RIGHT_OUTER_PRODUCT
public static final SpoofOuterProduct.OutProdType CELLWISE_OUTER_PRODUCT
public static final SpoofOuterProduct.OutProdType AGG_OUTER_PRODUCT
public static SpoofOuterProduct.OutProdType[] values()
for (SpoofOuterProduct.OutProdType c : SpoofOuterProduct.OutProdType.values()) System.out.println(c);
public static SpoofOuterProduct.OutProdType 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 © 2020 The Apache Software Foundation. All rights reserved.