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 presume ConstraintConfigurationProvider, ProblemFactCollectionProperty, ProblemFactProperty, PlanningEntityCollectionProperty, PlanningEntityProperty and PlanningScore annotations on PlanningSolution members based from the member type.
  • Enum Constant Details

    • 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 Details

    • values

      public static AutoDiscoverMemberType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      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 name
      NullPointerException - if the argument is null