net.grelf.grip
Enum OpThread.Ops
java.lang.Object
java.lang.Enum<OpThread.Ops>
net.grelf.grip.OpThread.Ops
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<OpThread.Ops>
- Enclosing class:
- OpThread
public static enum OpThread.Ops
- extends java.lang.Enum<OpThread.Ops>
|
Method Summary |
static OpThread.Ops |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OpThread.Ops[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
BLUR_GAUSSIAN
public static final OpThread.Ops BLUR_GAUSSIAN
CONVOLVE
public static final OpThread.Ops CONVOLVE
DECONVOLVE
public static final OpThread.Ops DECONVOLVE
MEAN
public static final OpThread.Ops MEAN
MEDIAN
public static final OpThread.Ops MEDIAN
NEAREST_EXTREME
public static final OpThread.Ops NEAREST_EXTREME
RANK
public static final OpThread.Ops RANK
VARIANCE
public static final OpThread.Ops VARIANCE
values
public static OpThread.Ops[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (OpThread.Ops c : OpThread.Ops.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static OpThread.Ops valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null