public static enum ScatterUpdate.UpdateOp extends Enum<ScatterUpdate.UpdateOp>
| Enum Constant and Description |
|---|
ADD |
ASSIGN |
DIVIDE |
MULTIPLY |
REVERSE_DIVIDE |
REVERSE_SUBTRACT |
SUBTRACT |
| Modifier and Type | Method and Description |
|---|---|
static ScatterUpdate.UpdateOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScatterUpdate.UpdateOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScatterUpdate.UpdateOp ADD
public static final ScatterUpdate.UpdateOp SUBTRACT
public static final ScatterUpdate.UpdateOp MULTIPLY
public static final ScatterUpdate.UpdateOp DIVIDE
public static final ScatterUpdate.UpdateOp REVERSE_SUBTRACT
public static final ScatterUpdate.UpdateOp REVERSE_DIVIDE
public static final ScatterUpdate.UpdateOp ASSIGN
public static ScatterUpdate.UpdateOp[] values()
for (ScatterUpdate.UpdateOp c : ScatterUpdate.UpdateOp.values()) System.out.println(c);
public static ScatterUpdate.UpdateOp 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.