public enum UseScope extends java.lang.Enum<UseScope>
| Enum Constant and Description |
|---|
Default
Represent standard definition/usage.
|
Implicit
Used to track changes in implicit definition.
|
PatMatTarget
Used in optimized sealed class invalidation (when IncOptions.seOptimizedSealed is true).
|
| Modifier and Type | Method and Description |
|---|---|
static UseScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UseScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UseScope Default
public static final UseScope Implicit
public static final UseScope PatMatTarget
public static UseScope[] values()
for (UseScope c : UseScope.values()) System.out.println(c);
public static UseScope 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