public enum MaskType extends Enum<MaskType>
| Enum Constant and Description |
|---|
IGNORE_BITMAP
The type ignore bitmap stands for image which defines image, which should be identified in scope of
sample/pattern to mask such area.
|
SELECTIVE_ALPHA
The type selective alpha stands for image with alpha channel defining pixels which should be masked.
|
| Modifier and Type | Method and Description |
|---|---|
static MaskType |
fromValue(String v) |
String |
value() |
static MaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaskType SELECTIVE_ALPHA
public static final MaskType IGNORE_BITMAP
public static MaskType[] values()
for (MaskType c : MaskType.values()) System.out.println(c);
public static MaskType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2017 JBoss by Red Hat. All rights reserved.