|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RGBToHSXConverter.Mode>
de.unihalle.informatik.MiToBo.color.conversion.RGBToHSXConverter.Mode
public static enum RGBToHSXConverter.Mode
The way of converting an image from rgb to hsi.
Enum Constant Summary | |
---|---|
RGB_HSB_JRE
RGB to HSB. |
|
RGB_HSI_SONKA
RGB to HSI. |
|
RGB_HSV_EASY_RGB
RGB to HSV. |
Method Summary | |
---|---|
static RGBToHSXConverter.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RGBToHSXConverter.Mode[] |
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 RGBToHSXConverter.Mode RGB_HSI_SONKA
public static final RGBToHSXConverter.Mode RGB_HSB_JRE
public static final RGBToHSXConverter.Mode RGB_HSV_EASY_RGB
Method Detail |
---|
public static RGBToHSXConverter.Mode[] values()
for (RGBToHSXConverter.Mode c : RGBToHSXConverter.Mode.values()) System.out.println(c);
public static RGBToHSXConverter.Mode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |