Enum FocusValidityScanPartialRun.ScanScope
- java.lang.Object
-
- java.lang.Enum<FocusValidityScanPartialRun.ScanScope>
-
- com.evolveum.midpoint.model.impl.tasks.scanner.FocusValidityScanPartialRun.ScanScope
-
- All Implemented Interfaces:
Serializable
,Comparable<FocusValidityScanPartialRun.ScanScope>
- Enclosing class:
- FocusValidityScanPartialRun
public static enum FocusValidityScanPartialRun.ScanScope extends Enum<FocusValidityScanPartialRun.ScanScope>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNMENTS
The activity will search for assignments with validity changes.COMBINED
The activity will search for both objects and assignments with validity changes.OBJECTS
The activity will search for objects with validity changes.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FocusValidityScanPartialRun.ScanScope
valueOf(String name)
Returns the enum constant of this type with the specified name.static FocusValidityScanPartialRun.ScanScope[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OBJECTS
public static final FocusValidityScanPartialRun.ScanScope OBJECTS
The activity will search for objects with validity changes.
-
ASSIGNMENTS
public static final FocusValidityScanPartialRun.ScanScope ASSIGNMENTS
The activity will search for assignments with validity changes.
-
COMBINED
public static final FocusValidityScanPartialRun.ScanScope COMBINED
The activity will search for both objects and assignments with validity changes. (In a single query.)
-
-
Method Detail
-
values
public static FocusValidityScanPartialRun.ScanScope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FocusValidityScanPartialRun.ScanScope c : FocusValidityScanPartialRun.ScanScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FocusValidityScanPartialRun.ScanScope valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-