Enum AutoDiscoverMemberType
- java.lang.Object
-
- java.lang.Enum<AutoDiscoverMemberType>
-
- org.optaplanner.core.api.domain.autodiscover.AutoDiscoverMemberType
-
- All Implemented Interfaces:
Serializable,Comparable<AutoDiscoverMemberType>
public enum AutoDiscoverMemberType extends Enum<AutoDiscoverMemberType>
Determines if and how to automatically presumeConstraintConfigurationProvider,ProblemFactCollectionProperty,ProblemFactProperty,PlanningEntityCollectionProperty,PlanningEntityPropertyandPlanningScoreannotations onPlanningSolutionmembers based from the member type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIELDReflect over the fields and automatically behave as the appropriate annotation is there based on the field type.GETTERReflect over the getter methods and automatically behave as the appropriate annotation is there based on the return type.NONEDo not reflect.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AutoDiscoverMemberTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AutoDiscoverMemberType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final AutoDiscoverMemberType NONE
Do not reflect.
-
FIELD
public static final AutoDiscoverMemberType FIELD
Reflect over the fields and automatically behave as the appropriate annotation is there based on the field type.
-
GETTER
public static final AutoDiscoverMemberType GETTER
Reflect over the getter methods and automatically behave as the appropriate annotation is there based on the return type.
-
-
Method Detail
-
values
public static AutoDiscoverMemberType[] 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 (AutoDiscoverMemberType c : AutoDiscoverMemberType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoDiscoverMemberType 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
-
-