OptaPlanner core 6.2.0.Beta1

org.optaplanner.core.config.heuristic.selector.entity
Enum EntitySorterManner

java.lang.Object
  extended by java.lang.Enum<EntitySorterManner>
      extended by org.optaplanner.core.config.heuristic.selector.entity.EntitySorterManner
All Implemented Interfaces:
Serializable, Comparable<EntitySorterManner>

public enum EntitySorterManner
extends Enum<EntitySorterManner>

The manner of sorting PlanningEntity instances.


Enum Constant Summary
DECREASING_DIFFICULTY
           
DECREASING_DIFFICULTY_IF_AVAILABLE
           
NONE
           
 
Method Summary
 SelectionSorter determineSorter(EntityDescriptor entityDescriptor)
           
 boolean hasSorter(EntityDescriptor entityDescriptor)
           
static EntitySorterManner valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EntitySorterManner[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final EntitySorterManner NONE

DECREASING_DIFFICULTY

public static final EntitySorterManner DECREASING_DIFFICULTY

DECREASING_DIFFICULTY_IF_AVAILABLE

public static final EntitySorterManner DECREASING_DIFFICULTY_IF_AVAILABLE
Method Detail

values

public static EntitySorterManner[] 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 (EntitySorterManner c : EntitySorterManner.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static EntitySorterManner 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

hasSorter

public boolean hasSorter(EntityDescriptor entityDescriptor)

determineSorter

public SelectionSorter determineSorter(EntityDescriptor entityDescriptor)

OptaPlanner core 6.2.0.Beta1

Copyright © 2006-2014 JBoss by Red Hat. All Rights Reserved.