public static enum SparsityEstimator.OpCode extends Enum<SparsityEstimator.OpCode>
Enum Constant and Description |
---|
CBIND |
DIAG |
EQZERO |
MM |
MULT |
NEQZERO |
PLUS |
RBIND |
RESHAPE |
TRANS |
Modifier and Type | Method and Description |
---|---|
static SparsityEstimator.OpCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SparsityEstimator.OpCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SparsityEstimator.OpCode MM
public static final SparsityEstimator.OpCode MULT
public static final SparsityEstimator.OpCode PLUS
public static final SparsityEstimator.OpCode EQZERO
public static final SparsityEstimator.OpCode NEQZERO
public static final SparsityEstimator.OpCode CBIND
public static final SparsityEstimator.OpCode RBIND
public static final SparsityEstimator.OpCode TRANS
public static final SparsityEstimator.OpCode DIAG
public static final SparsityEstimator.OpCode RESHAPE
public static SparsityEstimator.OpCode[] values()
for (SparsityEstimator.OpCode c : SparsityEstimator.OpCode.values()) System.out.println(c);
public static SparsityEstimator.OpCode 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.