public enum EPCFilterType extends Enum<EPCFilterType>
Enum Constant and Description |
---|
ExcludePattern
Exclude EPC
|
IncludePattern
Include EPC
|
None
Filter not in use
|
Modifier and Type | Method and Description |
---|---|
static EPCFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EPCFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPCFilterType None
public static final EPCFilterType IncludePattern
public static final EPCFilterType ExcludePattern
public static EPCFilterType[] values()
for (EPCFilterType c : EPCFilterType.values()) System.out.println(c);
public static EPCFilterType 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 null