Enum Class OverBudgetPolicy
- All Implemented Interfaces:
Serializable, Comparable<OverBudgetPolicy>, Constable
What a
PriorityTruncate strategy does when the priority sections alone exceed the
configured maxChars budget. Prior production systems often handled this by silently
overrunning the budget; this library makes the behavior explicit.
STRICT— throw anExtractionExceptionrather than exceed the budget. Use when the caller has hard cost / latency constraints.WARN_AND_INCLUDE— log an SLF4J warning, include the priority sections anyway, and surface the overrun inAssembledContext. The default keeps the caller moving while making the overrun auditable.
- Since:
- 0.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic OverBudgetPolicyReturns the enum constant of this class with the specified name.static OverBudgetPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRICT
-
WARN_AND_INCLUDE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-