Serializable, Comparable<ResourceFilterType>public enum ResourceFilterType extends Enum<ResourceFilterType>
ResourceFilter is including or excluding resources.| Enum Constant | Description | 
|---|---|
| EXCLUDE_ALL | |
| INCLUDE_ONLY | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static ResourceFilterType | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static ResourceFilterType[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ResourceFilterType INCLUDE_ONLY
public static final ResourceFilterType EXCLUDE_ALL
public static ResourceFilterType[] values()
for (ResourceFilterType c : ResourceFilterType.values()) System.out.println(c);
public static ResourceFilterType 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