public static enum NIVision.OutlineMethod extends java.lang.Enum<NIVision.OutlineMethod>
Enum Constant and Description |
---|
EDGE_DIFFERENCE |
EDGE_GRADIENT |
EDGE_PREWITT |
EDGE_ROBERTS |
EDGE_SIGMA |
EDGE_SOBEL |
Modifier and Type | Method and Description |
---|---|
static NIVision.OutlineMethod |
fromValue(int val) |
int |
getValue() |
static NIVision.OutlineMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NIVision.OutlineMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NIVision.OutlineMethod EDGE_DIFFERENCE
public static final NIVision.OutlineMethod EDGE_GRADIENT
public static final NIVision.OutlineMethod EDGE_PREWITT
public static final NIVision.OutlineMethod EDGE_ROBERTS
public static final NIVision.OutlineMethod EDGE_SIGMA
public static final NIVision.OutlineMethod EDGE_SOBEL
public static NIVision.OutlineMethod[] values()
for (NIVision.OutlineMethod c : NIVision.OutlineMethod.values()) System.out.println(c);
public static NIVision.OutlineMethod 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 namejava.lang.NullPointerException
- if the argument is nullpublic static NIVision.OutlineMethod fromValue(int val)
public int getValue()