Record Class FilterOrder.Dynamic
java.lang.Object
java.lang.Record
io.micronaut.http.filter.FilterOrder.Dynamic
- Record Components:
fallbackValue- The order value to use if the bean does not implementOrdered
- All Implemented Interfaces:
FilterOrder
- Enclosing interface:
FilterOrder
Dynamic order value (from
Ordered.getOrder()).- Since:
- 4.0.0
- Author:
- Jonas Konrad
-
Nested Class Summary
Nested classes/interfaces inherited from interface FilterOrder
FilterOrder.Dynamic, FilterOrder.Fixed -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intReturns the value of thefallbackValuerecord component.intCompute the order value for the given bean.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Dynamic
public Dynamic(int fallbackValue) Creates an instance of aDynamicrecord class.- Parameters:
fallbackValue- the value for thefallbackValuerecord component
-
-
Method Details
-
getOrder
Description copied from interface:FilterOrderCompute the order value for the given bean.- Specified by:
getOrderin interfaceFilterOrder- Parameters:
bean- The bean to compute the order value for, potentially implementingOrdered- Returns:
- The order value
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
fallbackValue
public int fallbackValue()Returns the value of thefallbackValuerecord component.- Returns:
- the value of the
fallbackValuerecord component
-