Enum TierConstraint.CostType

    • Enum Constant Detail

      • VALID

        public static final TierConstraint.CostType VALID
        Configures the constraint to return the same cost (1.0) for any link that has a valid tier value.
      • TIER

        public static final TierConstraint.CostType TIER
        Configures the constraint to return the tier value as the cost.
      • ORDER

        public static final TierConstraint.CostType ORDER
        Configures the constraint to return the order the tier value was added to the list of included tiers on the constraint.
    • Method Detail

      • values

        public static TierConstraint.CostType[] 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 (TierConstraint.CostType c : TierConstraint.CostType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TierConstraint.CostType 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