public enum PropertyScope extends java.lang.Enum<PropertyScope>
Enum Constant and Description |
---|
Framework
Only framework properties
|
Instance
Instance and all earlier levels
|
InstanceOnly
Only instance properties
|
Project
Project and Framework properties
|
ProjectOnly
Only Project properties
|
Unspecified
No specific scope specified
|
Modifier and Type | Method and Description |
---|---|
boolean |
isFrameworkLevel() |
boolean |
isInstanceLevel() |
boolean |
isProjectLevel() |
boolean |
isUnspecified() |
static PropertyScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyScope Framework
public static final PropertyScope ProjectOnly
public static final PropertyScope Project
public static final PropertyScope InstanceOnly
public static final PropertyScope Instance
public static final PropertyScope Unspecified
public static PropertyScope[] values()
for (PropertyScope c : PropertyScope.values()) System.out.println(c);
public static PropertyScope 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 nullpublic boolean isUnspecified()
Unspecified
public boolean isInstanceLevel()
public boolean isProjectLevel()
public boolean isFrameworkLevel()