net.grelf.grip
Enum OpThread.Ops

java.lang.Object
  extended by java.lang.Enum<OpThread.Ops>
      extended by 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>


Enum Constant Summary
BLUR_GAUSSIAN
           
CONVOLVE
           
DECONVOLVE
           
MEAN
           
MEDIAN
           
NEAREST_EXTREME
           
RANK
           
VARIANCE
           
 
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
 

Enum Constant Detail

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
Method Detail

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