public static enum ImageArithmetics.ArithOp extends Enum<ImageArithmetics.ArithOp>
Enum Constant and Description |
---|
ABS |
ABS_DIFF |
ADD |
ADD_CONST |
AND |
DIV |
DIV_CONST |
INV |
MAX |
MIN |
MULT |
MULT_CONST |
OR |
POW_CONST |
SUB |
Modifier and Type | Method and Description |
---|---|
static ImageArithmetics.ArithOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageArithmetics.ArithOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageArithmetics.ArithOp ADD
public static final ImageArithmetics.ArithOp SUB
public static final ImageArithmetics.ArithOp MULT
public static final ImageArithmetics.ArithOp DIV
public static final ImageArithmetics.ArithOp MIN
public static final ImageArithmetics.ArithOp MAX
public static final ImageArithmetics.ArithOp AND
public static final ImageArithmetics.ArithOp OR
public static final ImageArithmetics.ArithOp ABS_DIFF
public static final ImageArithmetics.ArithOp ADD_CONST
public static final ImageArithmetics.ArithOp MULT_CONST
public static final ImageArithmetics.ArithOp DIV_CONST
public static final ImageArithmetics.ArithOp POW_CONST
public static final ImageArithmetics.ArithOp INV
public static final ImageArithmetics.ArithOp ABS
public static ImageArithmetics.ArithOp[] values()
for (ImageArithmetics.ArithOp c : ImageArithmetics.ArithOp.values()) System.out.println(c);
public static ImageArithmetics.ArithOp 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 © 2010–2020 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.