public enum BorderType extends java.lang.Enum<BorderType>
| Enum Constant and Description |
|---|
EXTENDED
The pixels along the image border are extended outwards.
|
NORMALIZED
The kernel is renormalized to take in account that parts of it are not inside the image.
|
REFLECT
Access to outside the array are reflected back into the array around the closest border.
|
SKIP
Image borders are not processed and are simply skipped over.
|
VALUE
The image border is set to a fixed value.
|
WRAP
Also known as periodic.
|
| Modifier and Type | Method and Description |
|---|---|
static BorderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderType SKIP
public static final BorderType EXTENDED
public static final BorderType NORMALIZED
public static final BorderType REFLECT
public static final BorderType WRAP
public static final BorderType VALUE
public static BorderType[] values()
for (BorderType c : BorderType.values()) System.out.println(c);
public static BorderType 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 null