public enum ResourceFlag extends Enum<ResourceFlag>
| Enum Constant and Description |
|---|
AmbiguouslyQualified
The resource was qualified by an ambiguous qualifier (a wildcard) as opposed to being uniquely qualified.
|
File
The resource is a physical file.
|
Leaf
The resource is a leaf, and therefore has no children.
|
Node
The resource represents a node, which contains or is at least capable of having children..
|
ProjectSourceFile
The resource is a project source file.
|
ProjectTestSourceFile
The resource is a test source file for the current project.
|
Prototype
The resource instance is a Prototype (a factory instance).
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceFlag Prototype
public static final ResourceFlag AmbiguouslyQualified
public static final ResourceFlag Node
public static final ResourceFlag Leaf
public static final ResourceFlag File
public static final ResourceFlag ProjectSourceFile
public static final ResourceFlag ProjectTestSourceFile
public static ResourceFlag[] values()
for (ResourceFlag c : ResourceFlag.values()) System.out.println(c);
public static ResourceFlag 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 nullCopyright © 2013 JBoss by Red Hat. All Rights Reserved.