|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FieldOperations2D.FieldOperation>
de.unihalle.informatik.MiToBo.fields.FieldOperations2D.FieldOperation
public static enum FieldOperations2D.FieldOperation
Several operation types on a 2D vector field.
Enum Constant Summary | |
---|---|
COLOR_PLOT
Calculate a RGB colored image of the vector field to visualize the field. |
|
DIFF_X_IMAGE
Calculate the difference image in x-direction from the given vector field. |
|
DIFF_Y_IMAGE
Calculate the difference image in y-direction from the given vector field. |
|
MAGNITUDE_IMAGE
Calculate the magnitude image of the vector field. |
|
NORMEDMAG_IMAGE
Calculate the normalized magnitude image of the vector field in a range [0,1]. |
Method Summary | |
---|---|
static FieldOperations2D.FieldOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FieldOperations2D.FieldOperation[] |
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 |
---|
public static final FieldOperations2D.FieldOperation COLOR_PLOT
public static final FieldOperations2D.FieldOperation DIFF_X_IMAGE
public static final FieldOperations2D.FieldOperation DIFF_Y_IMAGE
public static final FieldOperations2D.FieldOperation MAGNITUDE_IMAGE
public static final FieldOperations2D.FieldOperation NORMEDMAG_IMAGE
Method Detail |
---|
public static FieldOperations2D.FieldOperation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static FieldOperations2D.FieldOperation[] values()
for (FieldOperations2D.FieldOperation c : FieldOperations2D.FieldOperation.values()) System.out.println(c);
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |