private static enum PackagerLib.Filter extends java.lang.Enum<PackagerLib.Filter>
Enum Constant and Description |
---|
ALL |
CLASSES_ONLY |
RESOURCES |
Modifier and Type | Method and Description |
---|---|
static PackagerLib.Filter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PackagerLib.Filter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackagerLib.Filter ALL
public static final PackagerLib.Filter CLASSES_ONLY
public static final PackagerLib.Filter RESOURCES
public static PackagerLib.Filter[] values()
for (PackagerLib.Filter c : PackagerLib.Filter.values()) System.out.println(c);
public static PackagerLib.Filter 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