Record Class FilterOrder.Fixed
java.lang.Object
java.lang.Record
io.micronaut.http.filter.FilterOrder.Fixed
- Record Components:
value- The order value
- All Implemented Interfaces:
FilterOrder
- Enclosing interface:
FilterOrder
Fixed order value.
- 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.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.intvalue()Returns the value of thevaluerecord component.
-
Constructor Details
-
Fixed
public Fixed(int value) Creates an instance of aFixedrecord class.- Parameters:
value- the value for thevaluerecord 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. -
value
-