Enum TierConstraint.CostType
- java.lang.Object
-
- java.lang.Enum<TierConstraint.CostType>
-
- org.onosproject.net.intent.constraint.TierConstraint.CostType
-
- All Implemented Interfaces:
Serializable
,Comparable<TierConstraint.CostType>
- Enclosing class:
- TierConstraint
public static enum TierConstraint.CostType extends Enum<TierConstraint.CostType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ORDER
Configures the constraint to return the order the tier value was added to the list of included tiers on the constraint.TIER
Configures the constraint to return the tier value as the cost.VALID
Configures the constraint to return the same cost (1.0) for any link that has a valid tier value.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TierConstraint.CostType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TierConstraint.CostType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-